Skip to content

Commit

Permalink
Remove 3.10, add 3.12
Browse files Browse the repository at this point in the history
Ubuntu 22.04 is the only one with 3.10, we replace that with 24.04
which uses 3.12
  • Loading branch information
dirkmueller committed Apr 9, 2024
1 parent 531e291 commit 0378cec
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.6", "3.9", "3.10", "3.11"]
# 3.6: SLE15
# 3.9: RHEL/Centos/Liberty 9
# 3.11: Tumbleweed
# 3.12 Ubuntu 24.04
python_version: ["3.6", "3.9", "3.11", "3.12"]
container:
image: registry.suse.com/bci/python:${{ matrix.python_version }}
steps:
Expand Down Expand Up @@ -137,14 +141,14 @@ jobs:
os_version: 15.4

steps:
- name: Set up Python
uses: actions/setup-python@v5
- name: Clean up disk space to maximize available space
run: sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc /opt/hostedtoolcache/CodeQL && sudo docker image prune --all --force
- name: checkout source code
uses: actions/checkout@v4
- name: Install tox
run: sudo apt update && sudo apt install tox
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down

0 comments on commit 0378cec

Please sign in to comment.