Adding setuptools prereq

This commit is contained in:
Tyler Hale 2025-05-05 15:27:22 -06:00
parent 7c91db950b
commit 4238aa6db8
Signed by: Tyler
GPG key ID: C7CC4B910D88EF96

View file

@ -8,6 +8,12 @@
register: pip_install register: pip_install
when: ansible_python_version is version('3', '>=') when: ansible_python_version is version('3', '>=')
- name: Install setuptools
package:
name: python3-setuptools
state: latest
when: ansible_python_version is version('3', '>=')
- name: Upgrade pip - name: Upgrade pip
pip: pip:
name: pip name: pip