Skip to content

Commit

Permalink
pip >= 9.0 for update_virtualenv (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Aug 15, 2018
1 parent cb72e11 commit 73168e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamparse/cli/update_virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _create_or_update_virtualenv(virtualenv_root,
cmd = "source {}".format(os.path.join(virtualenv_path, 'bin/activate'))
with prefix(cmd):
# Make sure we're using latest pip so options work as expected
run("pip install --upgrade 'pip~=9.0'", pty=False)
run("pip install --upgrade 'pip>=9.0'", pty=False)
run("pip install -r {} --exists-action w --upgrade "
"--upgrade-strategy only-if-needed".format(temp_req),
pty=False)
Expand Down

0 comments on commit 73168e0

Please sign in to comment.