Merge "Upgrade pip in the venv when we build it."

This commit is contained in:
Jenkins 2011-10-24 16:16:02 +00:00 committed by Gerrit Code Review
commit 1dde1d10f9

View File

@ -150,6 +150,9 @@ def pip_install(*args):
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.
pip_install('pip')
# Install greenlet by hand - just listing it in the requires file does not
# get it in stalled in the right order
pip_install('greenlet')