Skip to content

Commit 6f8b6e3

Browse files
committed
try 3.14 again
1 parent 9f7ff3a commit 6f8b6e3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [windows-latest, ubuntu-22.04, macos-latest]
15-
python-version: ["3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
fail-fast: false
1717

1818
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ test-command = "pytest {project}/test"
9999
build-frontend = "build"
100100
archs = ["auto64"] # only build for 64bit architectures
101101
# skip pypy and irrelevant architectures
102-
skip = ["pp*", "*_ppc64le", "*-musllinux*", "*_s390x", "cp314*"]
102+
skip = ["pp*", "*_ppc64le", "*-musllinux*", "*_s390x"]
103103

104104
[tool.mypy]
105105
files = "."

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py310, py311, py312, py313, mypy, ruff, doc
7+
envlist = py310, py311, py312, py313, py314, mypy, ruff, doc
88

99
[testenv:{py310,py311,py312,py313}]
1010
deps =
@@ -91,6 +91,7 @@ python =
9191
3.11: py311
9292
3.12: py312
9393
3.13: py313, mypy
94+
3.14: py314
9495

9596
[pytest]
9697
python_classes =

0 commit comments

Comments
 (0)