From d199971d60611647361b34f954ed40c450be1bd8 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Mon, 27 Nov 2023 16:56:26 -0500 Subject: [PATCH 1/2] Advance current development environment to Fedora 39 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 e3e0a24..e8cfde4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: - dependencies: python3-coverage python3-hypothesis task: PYTHONPATH=./src make -f Makefile coverage runs-on: ubuntu-latest - container: fedora:38 # CURRENT DEVELOPMENT ENVIRONMENT + container: fedora:39 # CURRENT DEVELOPMENT ENVIRONMENT steps: - uses: actions/checkout@v3 - name: Install dependencies From a09f3c61562946792afd1eb7fd30c73d0f70d62f Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Mon, 27 Nov 2023 18:34:05 -0500 Subject: [PATCH 2/2] Use Python 3.12 for local PYTHONPATH for F39 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 e8cfde4..dc7c58f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: task: make -f Makefile yamllint - dependencies: pylint python3-hypothesis task: > - PYTHONPATH=./src:/github/home/.local/lib/python3.11/site-packages + PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages make -f Makefile lint - dependencies: python3-hypothesis task: PYTHONPATH=./src make -f Makefile test