forked from ISTI-ansible-roles/ansible-roles
library/roles/python-env/tasks/main.yml: Always install the latest version of a pip module.
This commit is contained in:
parent
030a698d83
commit
c4c31465c0
|
@ -52,7 +52,7 @@
|
|||
with_items: '{{ py_env_pip_fix_ssl_warnings | default ([]) }}'
|
||||
|
||||
- name: Install a list of pip packages
|
||||
pip: name={{ item }}
|
||||
pip: name={{ item }} state=latest
|
||||
with_items: '{{ py_env_pip_pkgs | default ([]) }}'
|
||||
|
||||
- name: Install a list of versioned pip packages
|
||||
|
|
Loading…
Reference in New Issue