Skip to content

Commit 3ca29d5

Browse files
committed
ci(github): add support for Python 3.10+
1 parent 77928ce commit 3ca29d5

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.8", "3.9"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ version = { attr = "httoop.version.__version__" }
77

88
[project]
99
name = "httoop"
10-
# version = "0.1.1"
1110
dynamic = ["version"]
1211
description = "object oriented HTTP protocol library"
1312
readme = { file = "README.md", content-type = "text/markdown" }
@@ -28,6 +27,11 @@ classifiers = [
2827
"Operating System :: Microsoft :: Windows",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
30+
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
3135
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
3236
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
3337
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",

0 commit comments

Comments
 (0)