Skip to content

Commit a95aada

Browse files
Add support for Python 3.14 (#540)
This got released two days ago. Signed-off-by: Mihai Maruseac <[email protected]>
1 parent eec737d commit a95aada

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false # Don't cancel other jobs if one fails
3737
matrix:
3838
os: [ubuntu-latest, macos-latest, windows-latest]
39-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
39+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
4040
permissions:
4141
contents: read
4242
steps:

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false # Don't cancel other jobs if one fails
3333
matrix:
3434
os: [ubuntu-latest, macos-latest, windows-latest]
35-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
35+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3636
permissions:
3737
contents: read
3838
steps:

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
2222
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2324
"Development Status :: 3 - Alpha",
2425
"Intended Audience :: Developers",
2526
"Topic :: Security",
@@ -88,7 +89,7 @@ features = [
8889
]
8990

9091
[[tool.hatch.envs.hatch-test.matrix]]
91-
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
92+
python = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
9293

9394
[tool.hatch.envs.bench]
9495
description = """Custom environment for running benchmarks.
@@ -104,7 +105,7 @@ extra-dependencies = [
104105
]
105106

106107
[[tool.hatch.envs.bench.matrix]]
107-
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
108+
python = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
108109

109110
[tool.hatch.envs.bench.scripts]
110111
generate = "python benchmarks/generate.py {args}"

0 commit comments

Comments
 (0)