Skip to content

Commit

Permalink
Merge pull request #2885 from dimagi/py3-requirements
Browse files Browse the repository at this point in the history
change references to requirements-python3_6 to requirements-python3
  • Loading branch information
nickpell committed May 23, 2019
2 parents 40f6994 + c4866a7 commit 16971d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commcare_cloud/ansible/roles/commcarehq/tasks/main.yml
Expand Up @@ -80,7 +80,7 @@
become: true
with_items: "{{ commcarehq_requirements }}"
pip:
requirements: "{{ code_home }}/requirements-python3_6/{{ item }}"
requirements: "{{ code_home }}/requirements-python3/{{ item }}"
virtualenv: "{{ py3_virtualenv_home }}"
virtualenv_python: "python3.6"
chdir: "{{ code_home }}"
Expand Down
2 changes: 1 addition & 1 deletion src/commcare_cloud/fab/operations/release.py
Expand Up @@ -297,7 +297,7 @@ def _update_virtualenv(virtualenv_current, virtualenv_root, requirements):
if env.py3_include_venv:
_update_virtualenv(
env.py3_virtualenv_current, env.py3_virtualenv_root,
posixpath.join(env.code_root, 'requirements-python3_6')
posixpath.join(env.code_root, 'requirements-python3')
)

return update
Expand Down

0 comments on commit 16971d0

Please sign in to comment.