Skip to content

Commit d26b1c5

Browse files
authored
Add support for Python 3.14 (#623)
1 parent e03e818 commit d26b1c5

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
name: [
3333
"windows-py39",
34-
"windows-py313",
34+
"windows-py314",
3535
"windows-pypy3",
3636

3737
"ubuntu-py310-pytestmain",
@@ -40,6 +40,7 @@ jobs:
4040
"ubuntu-py311",
4141
"ubuntu-py312",
4242
"ubuntu-py313",
43+
"ubuntu-py314",
4344
"ubuntu-pypy3",
4445
"ubuntu-benchmark",
4546
]
@@ -53,6 +54,10 @@ jobs:
5354
python: "3.13"
5455
os: windows-latest
5556
tox_env: "py313"
57+
- name: "windows-py314"
58+
python: "3.14"
59+
os: windows-latest
60+
tox_env: "py314"
5661
- name: "windows-pypy3"
5762
python: "pypy3.9"
5863
os: windows-latest
@@ -86,6 +91,11 @@ jobs:
8691
os: ubuntu-latest
8792
tox_env: "py313"
8893
use_coverage: true
94+
- name: "ubuntu-py314"
95+
python: "3.14"
96+
os: ubuntu-latest
97+
tox_env: "py314"
98+
use_coverage: true
8999
- name: "ubuntu-pypy3"
90100
python: "pypy3.9"
91101
os: ubuntu-latest

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
description = "plugin and hook calling mechanisms for python"
3435
readme = {file = "README.rst", content-type = "text/x-rst"}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=docs,py{39,310,311,312,313,py3},py{39}-pytestmain
2+
envlist=docs,py{39,310,311,312,313,314,py3},py{39}-pytestmain
33

44
[testenv]
55
commands=

0 commit comments

Comments
 (0)