library/roles/python-env/tasks/main.yml: Install a specific version of tornado to not break dependencies.

This commit is contained in:
Andrea Dell'Amico 2018-04-18 16:03:28 +02:00
parent 8bd1a6c108
commit a20e9a357f
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@
apt: pkg={{ item }} state=present
with_items: '{{ py_env_pip_dev_packages }}'
- name: Install a specific version of tornado to avoid breaking dependencies
php: name=tornado version=4.1 state=present
- name: Install the latest six python package
#pip: name=six state=latest
pip: name=six state=present