We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eec737d commit a95aadaCopy full SHA for a95aada
3 files changed
.github/workflows/integration.yml
@@ -36,7 +36,7 @@ jobs:
36
fail-fast: false # Don't cancel other jobs if one fails
37
matrix:
38
os: [ubuntu-latest, macos-latest, windows-latest]
39
- python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
+ python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
40
permissions:
41
contents: read
42
steps:
.github/workflows/unit_tests.yml
@@ -32,7 +32,7 @@ jobs:
32
33
34
35
pyproject.toml
@@ -20,6 +20,7 @@ classifiers = [
20
"Programming Language :: Python :: 3.11",
21
"Programming Language :: Python :: 3.12",
22
"Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
24
"Development Status :: 3 - Alpha",
25
"Intended Audience :: Developers",
26
"Topic :: Security",
@@ -88,7 +89,7 @@ features = [
88
89
]
90
91
[[tool.hatch.envs.hatch-test.matrix]]
-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"]
93
94
[tool.hatch.envs.bench]
95
description = """Custom environment for running benchmarks.
@@ -104,7 +105,7 @@ extra-dependencies = [
104
105
106
107
[[tool.hatch.envs.bench.matrix]]
108
109
110
[tool.hatch.envs.bench.scripts]
111
generate = "python benchmarks/generate.py {args}"
0 commit comments