Merge pull request #3604 from benoitc/chore/drop-last-python-only-after-h1c-0.6.5

chore: require gunicorn_h1c >=0.6.5 and drop last python_only marker
This commit is contained in:
Benoit Chesneau 2026-04-20 10:35:08 +02:00 committed by GitHub
commit 4bcda32a78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 4 deletions

View File

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

View File

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

View File

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