Install `setuptools` before `sdist` generation, as `setuptools` is not anymore available by default on `3.12` (#8426)

This commit is contained in:
Mirko Galimberti 2023-10-29 11:45:44 +01:00 committed by GitHub
parent 051c4e93da
commit effc7709b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ update_version_metadata() {
}
generate_sdist() {
python3 -m pip install cython packaging
python3 -m pip install cython packaging setuptools
python3 setup.py sdist --formats=gztar
python3 -m pip uninstall cython -y
}