Skip to content

Commit

Permalink
Pin pip to <20.3.0 for now until we fix resolution issue (mozilla#1198)
Browse files Browse the repository at this point in the history
Currently, `dataproc_init.sh` updates pip to 20.3.1 which tries to
install the dependencies, but takes > 10 minutes to figure out a
solution set that satisfies the version dependencies.

This has us go back to the previous pip which has the old resolver which
works while we figure out how to straighten out the dependency
requirements.
  • Loading branch information
willkg committed Dec 10, 2020
1 parent a6c6122 commit 4f530ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataproc_bootstrap/dataproc_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ gsutil cp $TSPA_GS_PATH $TSPA_JAR
# Install python packages
PIP_REQUIREMENTS_FILE=/tmp/requirements.txt
gsutil cp $ARTIFACTS_BUCKET/bootstrap/python-requirements.txt $PIP_REQUIREMENTS_FILE
/opt/conda/default/bin/pip install --upgrade pip
/opt/conda/default/bin/pip install --upgrade 'pip<20.3.0'
/opt/conda/default/bin/pip install -r $PIP_REQUIREMENTS_FILE

0 comments on commit 4f530ab

Please sign in to comment.