Skip to content

Commit

Permalink
Merge "Nail the pip requirement at 1.1."
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Sep 10, 2012
2 parents ddd5ef1 + 4fc05bf commit 2e4c232
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/install_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,10 @@ def install_dependencies(venv=VENV):
print 'Installing dependencies with pip (this can take a while)...'

# First things first, make sure our venv has the latest pip and distribute.
pip_install('pip')
# NOTE: we keep pip at version 1.1 since the most recent version causes
# the .venv creation to fail. See:
# https://bugs.launchpad.net/nova/+bug/1047120
pip_install('pip==1.1')
pip_install('distribute')

# Install greenlet by hand - just listing it in the requires file does not
Expand Down

0 comments on commit 2e4c232

Please sign in to comment.