fix(build): specify setuptools version for dev install (#3211)

This commit is contained in:
Dexter Lee 2021-09-07 19:23:42 -07:00 committed by GitHub
parent cbc449eba1
commit 958b61a32a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ task checkPythonVersion(type: Exec) {
}
task environmentSetup(type: Exec, dependsOn: checkPythonVersion) {
commandLine 'bash', '-c', "${python_executable} -m venv ${venv_name} && ${venv_name}/bin/python -m pip install --upgrade pip wheel setuptools"
commandLine 'bash', '-c', "${python_executable} -m venv ${venv_name} && ${venv_name}/bin/python -m pip install --upgrade pip wheel setuptools==57.5.0"
}
task installPackage(type: Exec, dependsOn: environmentSetup) {