Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No longer attempt to install python3-future for Fedora 41 (and beyond) #56

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion roles/mythtv-dnf/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,22 @@
- '{{ dnf_pkg_lst }}'
- python3-lxml
- python3-libselinux
- python3-future
- python3-requests-cache
- python3-simplejson
- python3-setuptools
when: (ansible_distribution == "Fedora" and ansible_distribution_version|int >= 30) or
(ansible_distribution == "CentOS") or
(ansible_distribution == "Rocky")

- name: add additional essential python3 modules - Fedora 30 to 40, Centos
set_fact:
dnf_pkg_lst:
- '{{ dnf_pkg_lst }}'
- python3-future
when: (ansible_distribution == "Fedora" and ansible_distribution_version|int >= 30 and ansible_distribution_version|int <= 40) or
(ansible_distribution == "CentOS") or
(ansible_distribution == "Rocky")

- name: add mythtv essential python3 mysql modules - Fedora 30+, CentOS 8
set_fact:
dnf_pkg_lst:
Expand Down
Loading