Skip to content

Commit

Permalink
Update venv-dependencies.sh
Browse files Browse the repository at this point in the history
change line 253 of /util/venv-dependencies.sh to our_pip_install --upgrade 'pip < 21.0'
StreisandEffect#1835
  • Loading branch information
billjmurray authored Jun 3, 2021
1 parent dd30c15 commit de847a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/venv-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ source "$1/bin/activate"

# Below this line, we are only installing into the virtualenv at "$1"

our_pip_install --upgrade pip
our_pip_install --upgrade 'pip < 21.0'

# The pip we want should be in our path now. Make sure we use it.
hash -r
Expand Down

1 comment on commit de847a1

@sanakess
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to change to " our_pip_install --upgrade 'pip < 19.0.1' " Because 21.0 cause ansible installation error

Please sign in to comment.