library/roles/python-env/tasks/main.yml: python ssl workaround on trusty only.

This commit is contained in:
Andrea Dell'Amico 2018-05-16 11:01:05 +02:00
parent 8227a2462a
commit df69466a63
1 changed files with 3 additions and 1 deletions

View File

@ -59,5 +59,7 @@
pip: name={{ item.pkg }} version={{ item.version }}
with_items: '{{ py_env_versioned_pip_pkgs | default ([]) }}'
when: py_env_install
when:
- py_env_install
- is_trusty
tags: [ "python", "py_env", "py_env_pkgs" ]