From 1ea7b4943c5bfe989c7dd0d44d7a9e89cb93bc65 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 4 Mar 2024 12:46:14 +0100 Subject: [PATCH] workflow: drop python3.11 from matrix (HMS-3697) With fedora moving to python3.12 we can stop testing on py311. As a drive-by this commit also documents why we need to test on py36 and py39. --- .github/workflows/test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ce151a9..38a3e21e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,9 @@ jobs: - "test.run.test_stages" - "stages/test" environment: - - "py36" - - "py39" - - "py311" - - "py312" + - "py36" # RH8 + - "py39" # RH9 + - "py312" # latest fedora steps: - name: "Clone Repository" uses: actions/checkout@v3