We have no a2wsgi packaged yet. --- uvicorn-0.31.1/requirements.txt.orig +++ uvicorn-0.31.1/requirements.txt @@ -5,7 +5,6 @@ h11 @ git+https://github.com/python-hyper/h11.git@master # Explicit optionals -a2wsgi==1.10.7 wsproto==1.2.0 websockets==13.1 --- uvicorn-0.31.1/tests/middleware/test_wsgi.py.orig +++ uvicorn-0.31.1/tests/middleware/test_wsgi.py @@ -4,7 +4,6 @@ import sys from typing import AsyncGenerator, Callable -import a2wsgi import httpx import pytest @@ -52,7 +51,7 @@ return [output] -@pytest.fixture(params=[wsgi._WSGIMiddleware, a2wsgi.WSGIMiddleware]) +@pytest.fixture(params=[wsgi._WSGIMiddleware]) def wsgi_middleware(request: pytest.FixtureRequest) -> Callable: return request.param