Skip to content

Commit

Permalink
Remove support for Debian Buster in the python scenario
Browse files Browse the repository at this point in the history
Buster's version of Python 3 is too old to support some of the tools
that are installed, e.g., maurosoria/dirsearch which requires Python
3.8 or later.
  • Loading branch information
jsf9k committed Oct 14, 2024
1 parent 8ba4778 commit f36a0e2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 19 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,10 @@ jobs:
# https://packages.ubuntu.com/search?keywords=libicu&searchon=names&suite=noble&section=all
- platform: ubuntu-24-systemd
scenario: powershell
# Buster does not offer a new enough version of Python 3 to
# support some of the tools that are installed.
- platform: debian10-systemd
scenario: python
# Debian Bookworm and Trixie do not offer Python 2.
- platform: debian12-systemd
scenario: python2
Expand Down
4 changes: 3 additions & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ galaxy_info:
# - "2023"
- name: Debian
versions:
- buster
# Buster's version of Python is too old to support some of the
# tools that are installed.
# - buster
- bullseye
- bookworm
- trixie
Expand Down
38 changes: 20 additions & 18 deletions molecule/python/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,26 @@ platforms:
# privileged: true
# volumes:
# - /sys/fs/cgroup:/sys/fs/cgroup:rw
- cgroupns_mode: host
command: /lib/systemd/systemd
image: docker.io/geerlingguy/docker-debian10-ansible:latest
name: debian10-systemd-amd64
platform: amd64
pre_build_image: true
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw
- cgroupns_mode: host
command: /lib/systemd/systemd
image: docker.io/geerlingguy/docker-debian10-ansible:latest
name: debian10-systemd-arm64
platform: arm64
pre_build_image: true
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw
# Buster's version of Python 3 is too old to support some of the
# tools that are installed.
# - cgroupns_mode: host
# command: /lib/systemd/systemd
# image: docker.io/geerlingguy/docker-debian10-ansible:latest
# name: debian10-systemd-amd64
# platform: amd64
# pre_build_image: true
# privileged: true
# volumes:
# - /sys/fs/cgroup:/sys/fs/cgroup:rw
# - cgroupns_mode: host
# command: /lib/systemd/systemd
# image: docker.io/geerlingguy/docker-debian10-ansible:latest
# name: debian10-systemd-arm64
# platform: arm64
# pre_build_image: true
# privileged: true
# volumes:
# - /sys/fs/cgroup:/sys/fs/cgroup:rw
- cgroupns_mode: host
command: /lib/systemd/systemd
image: docker.io/geerlingguy/docker-debian11-ansible:latest
Expand Down

0 comments on commit f36a0e2

Please sign in to comment.