Skip to content

Commit

Permalink
Merge c13bda7 into 7e99262
Browse files Browse the repository at this point in the history
  • Loading branch information
adnrs96 committed Jun 19, 2017
2 parents 7e99262 + c13bda7 commit 4236357
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Dependancies for setting up pip to install our requirements.txt file.
setuptools==35.0.2
pip==9.0.1
wheel==0.29.0
4 changes: 2 additions & 2 deletions scripts/lib/setup_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@

def install_venv_deps(requirements_file):
# type: (str) -> None
run(["pip", "install", "-U", "setuptools==35.0.2"])
run(["pip", "install", "--upgrade", "pip", "wheel"])
pip_requirements = os.path.join(ZULIP_PATH, "requirements", "pip.txt")
run(["pip", "install", "-U", "--requirement", pip_requirements])
run(["pip", "install", "--no-deps", "--requirement", requirements_file])

def get_index_filename(venv_path):
Expand Down

0 comments on commit 4236357

Please sign in to comment.