Skip to content

Commit

Permalink
No longer attempt to install python3-future for Fedora 41 (and beyond)
Browse files Browse the repository at this point in the history
Fedora with F41 (and beyond) will not package python3-future.  Do not
try to install it.
  • Loading branch information
garybuhrmaster committed Jul 2, 2024
1 parent 0a081d4 commit 02ebc99
Showing 1 changed file with 9 additions and 1 deletion.
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

0 comments on commit 02ebc99

Please sign in to comment.