We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e2362 commit 4cb8f01Copy full SHA for 4cb8f01
1 file changed
.github/workflows/main.yml
@@ -41,7 +41,7 @@ jobs:
41
- name: ${{ matrix.task }}
42
run: ${{ matrix.task }}
43
44
- lowest_environment_checks:
+ lowest_supported_python:
45
strategy:
46
matrix:
47
include:
@@ -50,8 +50,20 @@ jobs:
50
- dependencies: python-setuptools python3-into-dbus-python
51
task: make legacy-package
52
runs-on: ubuntu-latest
53
- container: fedora:35 # LOWEST DEVELOPMENT ENVIRONMENT
+ container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
54
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
62
63
+ --install /usr/bin/python3
64
+ python3
65
+ /usr/bin/python3.12
66
+ 10
67
- name: Display Python version
68
run: python3 --version
69
- uses: actions/checkout@v4
0 commit comments