Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 16 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,30 @@ jobs:
- name: ${{ matrix.task }}
run: ${{ matrix.task }}

lowest_environment_checks:
lowest_supported_python:
strategy:
matrix:
include:
- dependencies: >
python3-dbus
python3-dbus-signature-pyparsing
python3-hypothesis
python3-hs-dbus-signature
task: PYTHONPATH=./src make -f Makefile test
- dependencies: >
python3-setuptools
python3-dbus
python3-dbus-signature-pyparsing
python3-hypothesis
python3-hs-dbus-signature
task: make legacy-package
runs-on: ubuntu-latest
container: fedora:35 # LOWEST DEVELOPMENT ENVIRONMENT
container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- name: Install python3.12
run: >
dnf install -y
alternatives
python3.12
- name: Set python3 to python3.12
run: >
alternatives
--install /usr/bin/python3
python3
/usr/bin/python3.12
10
- name: Display Python version
run: python3 --version
- uses: actions/checkout@v4
Expand All @@ -91,5 +95,7 @@ jobs:
${{ matrix.dependencies }}
- name: Install pyright
run: pip install --user pyright
- name: Install hs-dbus-signature
run: pip install --user hs-dbus-signature
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ yamllint:
package:
(umask 0022; python -m build; python -m twine check --strict ./dist/*)

.PHONY: legacy-package
legacy-package:
python3 setup.py build
python3 setup.py install

.PHONY: apply
apply:
@echo "Modules traced:"
Expand Down
Loading