Skip to content

Commit e2649e6

Browse files
authored
Merge pull request #62 from hsluv/python-3-10-to-3-14
Support Python 3.10 to 3.14
2 parents ccda75c + d56724a commit e2649e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-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.14] # 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
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",
27+
"Programming Language :: Python :: 3.14",
2828
"Programming Language :: Python :: 3 :: Only",
2929
],
30-
python_requires='>=3.9',
30+
python_requires='>=3.10',
3131
setup_requires=[
3232
'setuptools>=38.6.0', # for long_description_content_type
3333
],

0 commit comments

Comments
 (0)