library/roles/python-env/tasks/main.yml: Always install the latest version of a pip module.

This commit is contained in:
Andrea Dell'Amico 2018-07-23 18:03:54 +02:00
parent 030a698d83
commit c4c31465c0
1 changed files with 1 additions and 1 deletions

View File

@ -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