From 3c6ce70a51890b1cff515d113b316bcabaa99dd2 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 19 Oct 2011 18:03:51 -0400 Subject: [PATCH] Upgrade pip in the venv when we build it. Change-Id: I924975170c9e3a1ef23b5195cb3a6eed675ec043 --- tools/install_venv.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/install_venv.py b/tools/install_venv.py index 78447c860bd4..cfd4c6bd4872 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -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')