Commit 3415b94a by Ned Batchelder

Merge pull request #9655 from edx/ned/disable-pip-version-check

Disable the pip version check message
parents 3949242c 0dea5605
......@@ -138,7 +138,7 @@ def python_prereqs_installation():
Installs Python prerequisites
"""
for req_file in PYTHON_REQ_FILES:
sh("pip install -q --exists-action w -r {req_file}".format(req_file=req_file))
sh("pip install -q --disable-pip-version-check --exists-action w -r {req_file}".format(req_file=req_file))
@task
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment