Skip to content

Commit a620be6

Browse files
committed
Add support for Python 3.14
1 parent 62c5068 commit a620be6

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- "3.11"
2020
- "3.12"
2121
- "3.13"
22+
- "3.14"
2223
- pypy-3.9
2324
- pypy-3.10
2425

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ library.
112112
It has a test suite with 100.0% coverage for both statements and
113113
branches.
114114

115-
Currently it supports Python 3 (testing on 3.8-3.12) and PyPy 3.
115+
Currently it supports Python 3 (testing on 3.8-3.14) and PyPy 3.
116116
The last Python 2-compatible version was h11 0.11.x.
117117
(Originally it had a Cython wrapper for `http-parser
118118
<https://github.com/nodejs/http-parser>`_ and a beautiful nested state

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
"Programming Language :: Python :: 3.10",
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3234
"Topic :: Internet :: WWW/HTTP",
3335
"Topic :: System :: Networking",
3436
],

tox.ini

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

44
[gh-actions]
55
python =
@@ -9,6 +9,7 @@ python =
99
3.11: py311
1010
3.12: py312
1111
3.13: py313
12+
3.14: py314
1213
pypy-3.9: pypy3
1314
pypy-3.10: pypy3
1415

0 commit comments

Comments
 (0)