Merge "pip: use latest instead of upgrade"
This commit is contained in:
commit
98a536c253
@ -49,6 +49,6 @@
|
|||||||
when: _venv_requirements_txt.changed
|
when: _venv_requirements_txt.changed
|
||||||
pip:
|
pip:
|
||||||
requirements: '{{ create_venv_path }}/requirements-venv.txt'
|
requirements: '{{ create_venv_path }}/requirements-venv.txt'
|
||||||
extra_args: '--upgrade'
|
state: latest
|
||||||
virtualenv: '{{ create_venv_path }}'
|
virtualenv: '{{ create_venv_path }}'
|
||||||
virtualenv_command: '/usr/bin/python3 -m venv'
|
virtualenv_command: '/usr/bin/python3 -m venv'
|
||||||
|
@ -67,10 +67,10 @@
|
|||||||
when: _requirements_updated.changed
|
when: _requirements_updated.changed
|
||||||
pip:
|
pip:
|
||||||
requirements: '/usr/ansible-venv/requirements.txt'
|
requirements: '/usr/ansible-venv/requirements.txt'
|
||||||
virtualenv: '/usr/ansible-venv'
|
|
||||||
# Always upgrade because only called in response to
|
# Always upgrade because only called in response to
|
||||||
# requirements.txt changes.
|
# requirements.txt changes.
|
||||||
extra_args: '--upgrade'
|
state: latest
|
||||||
|
virtualenv: '/usr/ansible-venv'
|
||||||
|
|
||||||
# From Ansible 2.10 >= most of the fun stuff is in collections. Clone
|
# From Ansible 2.10 >= most of the fun stuff is in collections. Clone
|
||||||
# our required collections here. Note this is only for our testing of
|
# our required collections here. Note this is only for our testing of
|
||||||
|
Loading…
Reference in New Issue
Block a user