Skip to content

Commit 54bf124

Browse files
committed
chore: support and test python 3.14
1 parent c2c91d1 commit 54bf124

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
- "3.10"
2222
- "3.11"
2323
- "3.12"
24-
- "3.13.0-alpha - 3.13"
24+
- "3.13"
25+
- "3.14.0-alpha - 3.14"
2526
include:
2627
- os: "ubuntu-latest"
28+
- os: "ubuntu-22.04"
29+
python-version: "3.7"
2730
- os: "ubuntu-20.04"
2831
python-version: "3.6"
2932
steps:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2829
"Programming Language :: Python :: 3 :: Only",
2930
"Topic :: Software Development :: Libraries",
3031
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310, py311, py312, py313, lint, format, typecheck
2+
envlist = py36, py37, py38, py39, py310, py311, py312, py313, py314, lint, format, typecheck
33
isolated_build = True
44

55
[gh-actions]
@@ -10,8 +10,9 @@ python =
1010
3.9: py39
1111
3.10: py310
1212
3.11: py311
13-
3.12: py312, lint, format, typecheck
14-
3.13: py313
13+
3.12: py312
14+
3.13: py313, lint, format, typecheck
15+
3.14: py314
1516

1617
[testenv]
1718
extras = test

0 commit comments

Comments
 (0)