File tree Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -41,17 +41,27 @@ jobs:
4141 - name : ${{ matrix.task }}
4242 run : ${{ matrix.task }}
4343
44- lowest_environment_checks :
44+ lowest_supported_python :
4545 strategy :
4646 matrix :
4747 include :
4848 - dependencies : python3-into-dbus-python
4949 task : PYTHONPATH=./src make -f Makefile test
50- - dependencies : python-setuptools python3-into-dbus-python
51- task : make legacy-package
5250 runs-on : ubuntu-latest
53- container : fedora:35 # LOWEST DEVELOPMENT ENVIRONMENT
51+ container : fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
5452 steps :
53+ - name : Install python3.12
54+ run : >
55+ dnf install -y
56+ alternatives
57+ python3.12
58+ - name : Set python3 to python3.12
59+ run : >
60+ alternatives
61+ --install /usr/bin/python3
62+ python3
63+ /usr/bin/python3.12
64+ 10
5565 - name : Display Python version
5666 run : python3 --version
5767 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -40,8 +40,3 @@ yamllint:
4040.PHONY : package
4141package :
4242 (umask 0022; python -m build; python -m twine check --strict ./dist/* )
43-
44- .PHONY : legacy-package
45- legacy-package :
46- python3 setup.py build
47- python3 setup.py install
You can’t perform that action at this time.
0 commit comments