Always install lxml

This commit is contained in:
Andrea Dell'Amico 2021-02-15 18:53:26 +01:00
parent ea18ac7e84
commit bd17756795
2 changed files with 3 additions and 2 deletions

View File

@ -10,5 +10,6 @@ py3_env_site: False
py3_env_dpkg: []
py3_el_env_pkg: []
py3_env_wheel_pip_pkgs: []
py3_env_pip_pkgs: []
py3_env_pip_pkgs:
- lxml
py3_env_versioned_pip_pkgs: []

View File

@ -15,7 +15,7 @@
- name: Install the python3 additional deb packages
apt: name={{ py3_env_dpkg }} state={{ py3_env_pkgs_state }} update_cache=yes cache_valid_time=600
- name: Install python3-pip deb packages
- name: Install python3-pip deb packages on Bionic or newer
apt: name=python3-pip state={{ py3_env_pkgs_state }} update_cache=yes cache_valid_time=600
when: ansible_distribution_version is version_compare('18.04', '>=')