Merge pull request #1394 from jooola/fix/pin_pip_install_installer

Pin setuptools to ^58.0 in installer
This commit is contained in:
Kyle Robbertze 2021-10-14 14:03:32 +00:00 committed by GitHub
commit 3dfd07551e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ verbose "Detected Python version: $python_version"
pip_cmd="$python_bin -m pip"
verbose "\n * Installing necessary python services..."
loudCmd "$pip_cmd install setuptools --upgrade"
loudCmd "$pip_cmd install --upgrade setuptools~=58.0"
# Required here because PyGObject requires it, but it is installed after PyGObject
# when pip parses the setup.py file in airtime_analyzer
loudCmd "$pip_cmd install pycairo==1.19.1"