Skip to content

Commit 28605dc

Browse files
committed
Run tests on supported Python versions
1 parent bdae857 commit 28605dc

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
matrix:
1919
python-version:
2020
[
21-
"3.8",
22-
"3.9",
2321
"3.10",
2422
"3.11",
2523
"3.12",
2624
"3.13",
25+
"3.14",
26+
"3.14t",
2727
"pypy-3.8",
2828
"pypy-3.9",
2929
]

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,11 @@ def run(self):
6060
"Topic :: Software Development :: Testing",
6161
"Programming Language :: Python",
6262
"Programming Language :: Python :: 3",
63-
"Programming Language :: Python :: 3.8",
64-
"Programming Language :: Python :: 3.9",
6563
"Programming Language :: Python :: 3.10",
6664
"Programming Language :: Python :: 3.11",
6765
"Programming Language :: Python :: 3.12",
6866
"Programming Language :: Python :: 3.13",
67+
"Programming Language :: Python :: 3.14",
6968
"Programming Language :: Python :: Implementation :: CPython",
7069
"Programming Language :: Python :: Implementation :: PyPy",
7170
"Operating System :: OS Independent",

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py39,py310,py311,py312,py313,py,pypy3,lint
3+
envlist = py310,py311,py312,py313,py314,py,pypy3,lint
44

55
[gh-actions]
66
python =
7-
3.8: py38
8-
3.9: py39
97
3.10: py310
108
3.11: py311
119
3.12: py312
1210
3.13: py313, lint
11+
3.14: py314
1312
pypy-3.8: pypy3
1413
pypy-3.9: pypy3
1514

0 commit comments

Comments
 (0)