Skip to content

Commit 4cb8f01

Browse files
committed
Use Python 3.12 as lowest supported Python version
Signed-off-by: mulhern <[email protected]>
1 parent f3e2362 commit 4cb8f01

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: ${{ matrix.task }}
4242
run: ${{ matrix.task }}
4343

44-
lowest_environment_checks:
44+
lowest_supported_python:
4545
strategy:
4646
matrix:
4747
include:
@@ -50,8 +50,20 @@ jobs:
5050
- dependencies: python-setuptools python3-into-dbus-python
5151
task: make legacy-package
5252
runs-on: ubuntu-latest
53-
container: fedora:35 # LOWEST DEVELOPMENT ENVIRONMENT
53+
container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
5454
steps:
55+
- name: Install python3.12
56+
run: >
57+
dnf install -y
58+
alternatives
59+
python3.12
60+
- name: Set python3 to python3.12
61+
run: >
62+
alternatives
63+
--install /usr/bin/python3
64+
python3
65+
/usr/bin/python3.12
66+
10
5567
- name: Display Python version
5668
run: python3 --version
5769
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)