Skip to content

Commit

Permalink
Ubuntu: remove python3-future
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Meek committed Jun 29, 2024
1 parent 943201e commit 33b9346
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion roles/mythtv-deb/tasks/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,21 @@
- python3-simplejson
- python3-setuptools
when:
- ansible_lsb.major_release|int >= 20
- ansible_lsb.major_release|int >= 20 and ansible_lsb.major_release|int < 24

- name: add mythtv essential python modules (20.04 and later)
set_fact:
deb_pkg_lst:
- '{{ deb_pkg_lst }}'
- python3-requests
- python3-requests-cache
- python3-mysqldb
- python3-lxml
- python3-oauth
- python3-pycurl
- python3-setuptools
when:
- ansible_lsb.major_release|int >= 24

- name: add python3-pip module (23.04 and later)
set_fact:
Expand Down

0 comments on commit 33b9346

Please sign in to comment.