From: Dan Wendlandt Date: Sat, 25 Feb 2012 18:24:34 +0000 (-0800) Subject: bug 934459: pip no longer supports -E X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=9f4ec1c7237b9b2070e7b6d7a6eefbdd51a36324;p=openstack-build%2Fneutron-build.git bug 934459: pip no longer supports -E Change-Id: I2acdef113d147b7130053088d4bcf8515f61b815 --- diff --git a/tools/install_venv.py b/tools/install_venv.py index 040adbfe8..75a066c3c 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -91,7 +91,7 @@ def create_virtualenv(venv=VENV, install_pip=False): def install_dependencies(venv=VENV): print 'Installing dependencies with pip (this can take a while)...' - run_command(['tools/with_venv.sh', 'pip', 'install', '-E', venv, '-r', + run_command(['tools/with_venv.sh', 'pip', 'install', '-r', PIP_REQUIRES], redirect_output=False) # Tell the virtual env how to "import quantum"