Skip to content

Commit 9b56947

Browse files
authored
Merge pull request #3235 from locustio/officially-support-python-3.14-and-test-it
Officially support python 3.14 and test it
2 parents 894ae53 + d48665a commit 9b56947

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ jobs:
144144
# - { name: "MacOS", python: '3.12', os: macos-latest, group: "test", env: "integration_test_ci:fail_fast" }
145145

146146
# Unit tests on Python versions
147+
- { name: "Python 3.14", python: "3.14", os: ubuntu-latest, group: "test", env: "test:all" }
147148
- { name: "Python 3.13", python: "3.13", os: ubuntu-latest, group: "test", env: "test:all" }
148149
- { name: "Python 3.12", python: "3.12", os: ubuntu-latest, group: "test", env: "test:all" }
149150
- { name: "Python 3.11", python: "3.11", os: ubuntu-latest, group: "test", env: "test:all" }

pyproject.toml

Lines changed: 2 additions & 1 deletion
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
"Intended Audience :: Developers",
2930
"Intended Audience :: System Administrators",
3031
"Topic :: Software Development :: Testing",
@@ -206,7 +207,7 @@ run = [
206207
template = "hatch-test"
207208

208209
[[tool.hatch.envs.test.matrix]]
209-
python = ["3.10", "3.11", "3.12", "3.13"]
210+
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
210211

211212

212213
## Run all unit tests and advanced debugging

0 commit comments

Comments
 (0)