try to fix the python version

This commit is contained in:
Andreas Zweili 2021-11-11 22:07:22 +01:00
parent af59d64abd
commit 30cdc5a707
1 changed files with 2 additions and 2 deletions

View File

@ -59,14 +59,14 @@
url: "https://bootstrap.pypa.io/get-pip.py"
dest: "/tmp/get-pip.py"
mode: "0644"
when: ansible_python_version > 3.5
when: ansible_python_version | float > 3.5
- name: "Download Pip"
get_url:
url: "https://bootstrap.pypa.io/pip/3.5/get-pip.py"
dest: "/tmp/get-pip.py"
mode: "0644"
when: ansible_python_version == 3.5
when: ansible_python_version | float == 3.5
- name: "Install pip"
command: