From 6f1ba7a0182945216db2ebb302dc00e5f37d1384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Tue, 23 Sep 2025 09:53:37 +0200 Subject: [PATCH 1/2] ci: do not test on EOL Python versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Python versions < 3.8 are all EOL Signed-off-by: Benjamin Cabé --- .github/workflows/test.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d8a2d0..6b578f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,36 +30,6 @@ jobs: # NOTE: Testing of the Windows targets are currently disabled because # the test script is simply not ready for it. target: - # Python 3.6 - - python: '3.6' - os: Linux - builder: ubuntu-20.04 - - python: '3.6' - os: macOS - builder: macos-13 - # - python: '3.6' - # os: Windows - # builder: windows-2019 - # Python 3.7 - - python: '3.7' - os: Linux - builder: ubuntu-20.04 - - python: '3.7' - os: macOS - builder: macos-12 - # - python: '3.7' - # os: Windows - # builder: windows-2019 - # Python 3.8 - - python: '3.8' - os: Linux - builder: ubuntu-20.04 - - python: '3.8' - os: macOS - builder: macos-13 - # - python: '3.8' - # os: Windows - # builder: windows-2019 # Python 3.9 - python: '3.9' os: Linux From e5067d10ccc0fc579db1a1723ed3d28059098ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Tue, 23 Sep 2025 09:54:26 +0200 Subject: [PATCH 2/2] ci: use ubuntu-22.04 runner for python 3.9 testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub doesn't offer ubuntu-20.04 runners since april 2025 Signed-off-by: Benjamin Cabé --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6b578f7..ccdf863 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: # Python 3.9 - python: '3.9' os: Linux - builder: ubuntu-20.04 + builder: ubuntu-22.04 - python: '3.9' os: macOS builder: macos-13