Skip to content

Commit dd47e01

Browse files
committed
Drop support for near-end-of-life Python 3.9
1 parent ccda75c commit dd47e01

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run_test_suite:
1515
strategy:
1616
matrix:
17-
python-version: [3.9, 3.13] # no current need for in-between versions
17+
python-version: ["3.10", 3.13] # no current need for in-between versions
1818
name: Run the Test Suite
1919
runs-on: ubuntu-24.04
2020
steps:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@
2020
"Operating System :: OS Independent",
2121
"Topic :: Software Development",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
2625
"Programming Language :: Python :: 3.12",
2726
"Programming Language :: Python :: 3.13",
2827
"Programming Language :: Python :: 3 :: Only",
2928
],
30-
python_requires='>=3.9',
29+
python_requires='>=3.10',
3130
setup_requires=[
3231
'setuptools>=38.6.0', # for long_description_content_type
3332
],

0 commit comments

Comments
 (0)