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:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user