summaryrefslogtreecommitdiffstats
path: root/roles/python/tasks
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-09-04 04:07:01 +0200
committerAhmed AbdelHalim <[email protected]>2025-09-04 04:19:18 +0200
commit0188aa2f0a9c9d7e8b60720b56825853f7a220db (patch)
treea322752c8765cf5ef3cf5748ee5733e938249f8c /roles/python/tasks
parenta97e13a86f1fc16a75b5fd83a6dd74b2e694f314 (diff)
Fix CI
Diffstat (limited to 'roles/python/tasks')
-rw-r--r--roles/python/tasks/main.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/roles/python/tasks/main.yml b/roles/python/tasks/main.yml
index 686e99a9..18313a17 100644
--- a/roles/python/tasks/main.yml
+++ b/roles/python/tasks/main.yml
@@ -1,4 +1,7 @@
---
+- name: "Include OS-specific variables"
+ ansible.builtin.include_vars: "{{ ansible_os_family | lower }}.yml"
+
- name: "Install pyenv and pipx"
community.general.homebrew:
name:
@@ -79,5 +82,5 @@
- name: "Install packaging for community.general.pipx version installs"
become: true
ansible.builtin.package:
- name: "python-packaging"
+ name: "{{ python_packaging }}"
state: "present"