change virtualenv creation when running with python 3

pull/658/head
Steven Robertson 4 years ago
parent bbc13d9776
commit 0a34d378c9

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# I am an Ansible new-style Python module. I return details about the Python
# interpreter I run within.

@ -9,7 +9,14 @@
# Can't use pip module because it can't create virtualenvs, must call it
# directly.
- shell: virtualenv /tmp/issue_152_virtualenv
when: lout.python_version > '2.6'
when: lout.python_version > '2.6' and not lout.python_version.startswith('3')
environment:
https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}"
no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}"
PATH: "{{ lookup('env', 'PATH') }}"
- shell: python3 -m venv /tmp/issue_152_virtualenv
when: lout.python_version > '2.6' and lout.python_version.startswith('3')
environment:
https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}"
no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}"

Loading…
Cancel
Save