Fixed #934459. Remove outdated -E arg for pip.

Pip no longer supports -E, and since we were running pip from inside
the virtualenv anyway, it was unnecessary.

Change-Id: I423e2842afe28ac365a13e7f8e492095f3685dd3
This commit is contained in:
Paul McMillan
2012-02-17 12:51:55 -08:00
parent 8a919b8277
commit 8b7e744aaa
2 changed files with 3 additions and 3 deletions

View File

@@ -109,8 +109,8 @@ def create_virtualenv(venv=VENV):
def install_dependencies(venv=VENV):
print "Installing dependencies..."
print "(This may take several minutes, don't panic)"
run_command([WITH_VENV, 'pip', 'install', '-E',
venv, '-r', PIP_REQUIRES], redirect_output=False)
run_command([WITH_VENV, 'pip', 'install', '-r', PIP_REQUIRES],
redirect_output=False)
# Tell the virtual env how to "import dashboard"
py = 'python%d.%d' % (sys.version_info[0], sys.version_info[1])