From 471b57386403d6827321e7f6c1305545426e3439 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 2 May 2026 03:18:07 +0100 Subject: [PATCH 1/2] Drop Python 3.9 --- .github/workflows/ci.yml | 4 ++-- setup.cfg | 2 +- setup.py | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6e1532e..68766dc7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,10 +51,10 @@ jobs: name: Test strategy: matrix: - pyver: ['3.9', '3.10', '3.11'] + pyver: ['3.10', '3.11'] os: [ubuntu, macos, windows] include: - - pyver: pypy-3.9 + - pyver: pypy-3.11 os: ubuntu runs-on: ${{ matrix.os }}-latest timeout-minutes: 15 diff --git a/setup.cfg b/setup.cfg index 4703cdc6..0f7911bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,4 +11,4 @@ max-line-length = 120 max-complexity = 10 [bdist_wheel] -python_tag = py39.py310.py311.py312.py313 +python_tag = py310.py311.py312.py313 diff --git a/setup.py b/setup.py index 9bd329dd..3a65d4dd 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,6 @@ 'Environment :: Console', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -70,5 +69,5 @@ 'Pygments>=2.2.0', "watchfiles>=0.10" ], - python_requires=">=3.9", + python_requires=">=3.10", ) From 9d268f0fdce576419ac8bb26e12d70741b53fce3 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 2 May 2026 03:20:15 +0100 Subject: [PATCH 2/2] Apply suggestion from @Dreamsorcerer --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68766dc7..44907191 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: pyver: ['3.10', '3.11'] os: [ubuntu, macos, windows] include: - - pyver: pypy-3.11 + - pyver: pypy-3.10 os: ubuntu runs-on: ${{ matrix.os }}-latest timeout-minutes: 15