From cccdb69d4574bd7674b140f34576a9f64e9fc930 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Wed, 29 Nov 2023 11:30:29 +0100 Subject: [PATCH] Fix install in RockyLinux 9 --- contextualization/conf-ansible.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contextualization/conf-ansible.yml b/contextualization/conf-ansible.yml index 1a354c77..2a9fba38 100644 --- a/contextualization/conf-ansible.yml +++ b/contextualization/conf-ansible.yml @@ -121,7 +121,7 @@ ######################################### Use pip to enable to set the version ############################################# # Version over 21 does not work with python 3.6 or older - - name: Upgrade pip in py3.6-py3.10 + - name: Upgrade pip in py3.6- pip: name: pip>18.0,<21.0 executable: pip3 @@ -131,7 +131,7 @@ pip: name: pip>20.0 executable: pip3 - when: ansible_python_version is version('3.7', '>=') and ansible_python_version is version('3.10', '<') + when: ansible_python_version is version('3.7', '>=') and ansible_python_version is version('3.9', '<') - name: Upgrade pip in py3.9-py3.10 pip: