Testing pip updates

This commit is contained in:
Tyler Hale 2022-08-22 15:17:56 -06:00
parent eecd773da8
commit 99c5cbc9a7
Signed by: Tyler
GPG key ID: C7CC4B910D88EF96

View file

@ -11,7 +11,7 @@
- name: Upgrade pip
pip:
name: pip
executable: pip
executable: pip3
state: latest
extra_args: --upgrade
when: ansible_python_version is version('3', '>=')
@ -27,7 +27,7 @@
- name: Install latest cryptography
pip:
name: cryptography
executable: pip
executable: pip3
state: latest
when: ansible_python_version is version('3', '>=')
become: true