Skip to content

Commit 56e36a9

Browse files
committed
Explicitly support newer Python
1 parent 3aa9b67 commit 56e36a9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
tests:
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1515
test-os: [ubuntu-latest, windows-latest]
1616

1717
runs-on: ${{ matrix.test-os }}

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ def read(*filenames, **kwargs):
5252
'Programming Language :: Python :: 3.10',
5353
'Programming Language :: Python :: 3.11',
5454
'Programming Language :: Python :: 3.12',
55+
'Programming Language :: Python :: 3.13',
56+
'Programming Language :: Python :: 3.14',
5557
'Topic :: Software Development :: Libraries :: Python Modules',
5658
'Topic :: Software Development :: Quality Assurance',
5759
'Framework :: Flake8',

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[tox]
2-
envlist = py38, py39, py310, py311, py312, lint
2+
envlist = py38, py39, py310, py311, py312, py313, py314, lint
33

44
[gh-actions]
55
python =
66
3.8: py38
77
3.9: py39
88
3.10: py310
99
3.11: py311
10-
3.12: py312, lint
10+
3.12: py312
11+
3.13: py313
12+
3.14: py314, lint
1113

1214
[testenv]
1315
deps =

0 commit comments

Comments
 (0)