Skip to content

Commit

Permalink
pip fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Istomin authored and Pavel Istomin committed Jun 16, 2022
1 parent 3de4aa7 commit 4ec5afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metadata-ingestion/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ task checkPythonVersion(type: Exec) {
task environmentSetup(type: Exec, dependsOn: checkPythonVersion) {
inputs.file file('setup.py')
outputs.dir("${venv_name}")
commandLine 'bash', '-c', "${python_executable} -m venv ${venv_name} && ${venv_name}/bin/python -m pip install --upgrade pip wheel setuptools==57.5.0"
commandLine 'bash', '-c', "${python_executable} -m venv ${venv_name} && ${venv_name}/bin/python -m pip install --upgrade pip==19.3.1 wheel setuptools==57.5.0"
}

task runPreFlightScript(type: Exec, dependsOn: environmentSetup) {
Expand Down

0 comments on commit 4ec5afa

Please sign in to comment.