Skip to content

Commit 39ec9a5

Browse files
committed
Drop end-of-life Python 3.8 and add Python 3.13
1 parent 735c9f2 commit 39ec9a5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run_test_suite:
1212
strategy:
1313
matrix:
14-
python-version: [3.7, 3.12] # no current need for in-between versions
14+
python-version: [3.9, 3.13] # no current need for in-between versions
1515
name: Run the Test Suite
1616
runs-on: ubuntu-20.04
1717
steps:

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@
2020
"Operating System :: OS Independent",
2121
"Topic :: Software Development",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.7",
24-
"Programming Language :: Python :: 3.8",
2523
"Programming Language :: Python :: 3.9",
2624
"Programming Language :: Python :: 3.10",
2725
"Programming Language :: Python :: 3.11",
2826
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2928
"Programming Language :: Python :: 3 :: Only",
3029
],
31-
python_requires='>=3.7',
30+
python_requires='>=3.9',
3231
setup_requires=[
3332
'setuptools>=38.6.0', # for long_description_content_type
3433
],

0 commit comments

Comments
 (0)