Skip to content

Commit f4b9f5f

Browse files
Merge pull request #1252 from pytest-dev/webknjaz-patch-2
Declare support for Python 3.14
2 parents 911ac6d + a9e4e1c commit f4b9f5f

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- "py311-pytestmain"
4242
- "py312-pytestlatest"
4343
- "py313-pytestlatest"
44+
- "py314-pytestlatest"
4445
- "py310-psutil"
4546
- "py310-setproctitle"
4647

@@ -60,6 +61,8 @@ jobs:
6061
python: "3.12"
6162
- tox_env: "py313-pytestlatest"
6263
python: "3.13"
64+
- tox_env: "py314-pytestlatest"
65+
python: "~3.14.0-0"
6366
- tox_env: "py310-psutil"
6467
python: "3.10"
6568
- tox_env: "py310-setproctitle"

changelog/1252.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Python 3.14 is now tested and supported.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
3131
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
3233
]
3334
requires-python = ">=3.9"
3435
dependencies = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
linting
4-
py{39,310,311,312,313}-pytestlatest
4+
py{39,310,311,312,313,314}-pytestlatest
55
py310-pytestmain
66
py310-psutil
77
py310-setproctitle

0 commit comments

Comments
 (0)