From 9f4ec1c7237b9b2070e7b6d7a6eefbdd51a36324 Mon Sep 17 00:00:00 2001 From: Dan Wendlandt Date: Sat, 25 Feb 2012 10:24:34 -0800 Subject: [PATCH] bug 934459: pip no longer supports -E Change-Id: I2acdef113d147b7130053088d4bcf8515f61b815 --- tools/install_venv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install_venv.py b/tools/install_venv.py index 040adbfe8b9..75a066c3c09 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"