Skip to content

Commit

Permalink
Fix install in RockyLinux 9
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Nov 29, 2023
1 parent c759697 commit cccdb69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contextualization/conf-ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit cccdb69

Please sign in to comment.