Merge "bug 934459: pip no longer supports -E"

This commit is contained in:
Jenkins 2012-02-28 05:44:34 +00:00 committed by Gerrit Code Review
commit b76664ca29

View File

@ -91,7 +91,7 @@ def create_virtualenv(venv=VENV, install_pip=False):
def install_dependencies(venv=VENV): def install_dependencies(venv=VENV):
print 'Installing dependencies with pip (this can take a while)...' 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) PIP_REQUIRES], redirect_output=False)
# Tell the virtual env how to "import quantum" # Tell the virtual env how to "import quantum"