1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-20 02:39:02 +00:00

Use StrictVersion instead of packaging Version

This commit is contained in:
Mariam Ahhttouche 2026-02-27 17:18:48 +01:00
parent ed0eb833f7
commit 5033a4f922
2 changed files with 17 additions and 69 deletions

View file

@ -27,41 +27,6 @@
environment:
UV_INSTALL_DIR: /usr/local/bin
- name: Install python 3
uv_python:
version: 3
state: present
register: python_install
- name: Assert python 3 is installed
ansible.builtin.assert:
that:
- python_install.failed is false
- python_install.python_versions | length >= 1
- name: Upgrade python 3
uv_python:
version: 3
state: latest
register: python_install
- name: Assert python 3 upgraded
ansible.builtin.assert:
that:
- python_install.failed is false
- python_install.python_versions | length >= 1
- name: Remove python 3
uv_python:
version: 3
state: absent
register: python_delete
- name: Assert python 3 deleted
ansible.builtin.assert:
that:
- python_delete.failed is false
- name: Install python 3.14 in check mode
uv_python:
version: 3.14