From 3c9fb3da1f500c338e152a733ba3e0a93e0cef67 Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 23 Dec 2024 11:50:04 -0500 Subject: [PATCH 1/3] Remove GitHub weekly test Its utility has diminished, yet it still requires upkeep. Signed-off-by: mulhern --- .github/workflows/weekly.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/weekly.yml diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml deleted file mode 100644 index ced6ced..0000000 --- a/.github/workflows/weekly.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- -name: dbus-signature-pyparsing weekly - -# yamllint disable-line rule:truthy -on: - schedule: - - cron: 20 1 * * 6 - workflow_dispatch: - -jobs: - next-fedora-python-checks: - strategy: - matrix: - include: - - dependencies: black python3-isort - task: make -f Makefile fmt-travis - - dependencies: yamllint - task: make -f Makefile yamllint - - dependencies: pylint python3-pyparsing python-hypothesis - task: > - PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages - make -f Makefile lint - runs-on: ubuntu-latest - container: fedora:41 # NEXT DEVELOPMENT ENVIRONMENT - steps: - - uses: actions/checkout@v4 - - name: Install dependencies - run: > - dnf install -y - make - pip - ${{ matrix.dependencies }} - - name: Install hs-dbus-signature - run: pip install --user hs-dbus-signature - - name: ${{ matrix.task }} - run: ${{ matrix.task }} From da19b939b87af6d4dc2c3a0cb174049adc5beadf Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 23 Dec 2024 11:51:18 -0500 Subject: [PATCH 2/3] Require setuptools in relevant GitHub workflows Signed-off-by: mulhern --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 21ff540..e825426 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,17 +24,20 @@ jobs: pylint python3-pyparsing python3-hypothesis + python3-setuptools task: > PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages make -f Makefile lint - dependencies: > python3-pyparsing python3-hypothesis + python3-setuptools task: PYTHONPATH=./src make -f Makefile test - dependencies: > python3-coverage python3-pyparsing python3-hypothesis + python3-setuptools task: PYTHONPATH=./src make -f Makefile coverage - dependencies: python python3-build twine task: make -f Makefile package From 2e48abe4ccf304ba6ab735c3f0a908cd2636d9ec Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Fri, 6 Dec 2024 15:07:39 -0500 Subject: [PATCH 3/3] Advance current development environment to Fedora 41 Signed-off-by: Bryan Gurney --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e825426..1e154a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,7 @@ jobs: - dependencies: python python3-build twine task: make -f Makefile package runs-on: ubuntu-latest - container: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT + container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT steps: - uses: actions/checkout@v4 - name: Install dependencies