Skip to content

Commit

Permalink
fix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mafalb committed Jan 8, 2024
1 parent 1117c23 commit a5bd68a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
13 changes: 12 additions & 1 deletion roles/python/vars/RedHat-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@
python_default_version: "3.6"
python_package:
_default: "@python36"
"2.7": "@python27"
"3.6": "@python36"
"3.8": "@python38"
"3.9": "@python39"
"3.11": "python3.11"

python_extra_packages:
_default:
- python3-libselinux
- python3-cryptography
- glibc-langpack-en
- python3-setuptools
'3.6': []
'3.8': []
'3.9': []
'3.10': []
'3.11': []
...
13 changes: 2 additions & 11 deletions roles/python/vars/RedHat-9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,6 @@ python_extra_packages:
- python3-cryptography
- glibc-langpack-en
- python3-setuptools
'3.9':
- glibc-langpack-en
- python3.9-libselinux
- python3.9-cryptography
- python3.9-setuptools
'3.11':
- glibc-langpack-en
- python3.11-libselinux
- python3.11-cryptography
- python3.11-setuptools

'3.9': []
'3.11': []
...
4 changes: 1 addition & 3 deletions roles/python/vars/RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@
# see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt
---
__mafalb_python_version: "{{ version | default(mafalb_python_version) | default(mafalb_python_default_version) }}"
__mafalb_python_extra_packages:
"2": [python-virtualenv]
"3": []
__mafalb_python_extra_packages: []
8 changes: 4 additions & 4 deletions roles/python/vars/Ubuntu-22.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ python_package:
"3.11": python3.11
python_extra_packages:
_default:
- python3.10-venv
- python3.10-setuptools
- python3-venv
- python3-setuptools
"3.10":
- python3.10-venv
- python3.10-setuptools
- python3-venv
- python3-setuptools
"3.11":
- python3.11-venv
- python3.11-setuptools
Expand Down

0 comments on commit a5bd68a

Please sign in to comment.