chore: require gunicorn_h1c >=0.6.5 and drop last python_only marker

gunicorn_h1c 0.6.5 ships the Content-Length list-form rejection
(h1c #8). The last python_only marker can now come off
rfc9112_smuggle_cl_list_form_01.
This commit is contained in:
Benoit Chesneau 2026-04-20 07:29:47 +02:00
parent 3af35da8c7
commit 98eac0b04e
3 changed files with 2 additions and 4 deletions

View File

@ -53,7 +53,7 @@ tornado = ["tornado>=6.5.0"]
gthread = []
setproctitle = ["setproctitle"]
http2 = ["h2>=4.1.0"]
fast = ["gunicorn_h1c>=0.6.4"]
fast = ["gunicorn_h1c>=0.6.5"]
testing = [
"gevent>=24.10.1",
"eventlet>=0.40.3",

View File

@ -3,4 +3,4 @@ coverage
pytest>=7.2.0
pytest-cov
pytest-asyncio
gunicorn_h1c>=0.6.4
gunicorn_h1c>=0.6.5

View File

@ -8,5 +8,3 @@
# CL list variant.
from gunicorn.http.errors import InvalidHeader
request = InvalidHeader
# The C parser (gunicorn_h1c) does not yet enforce this rule.
python_only = True