diff --git a/requirements.txt b/requirements.txt index 12c93899a..b3a464c0b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,22 +11,23 @@ websockets==13.1 # Packaging build==1.2.2.post1 -twine==5.1.1 +twine==6.0.1 # Testing -ruff==0.7.1 -pytest==8.3.3 +ruff==0.8.3 +pytest==8.3.4 pytest-mock==3.14.0 mypy==1.13.0 types-click==7.1.8 types-pyyaml==6.0.12.20240917 -trustme==1.1.0 -cryptography==43.0.3 +trustme==1.1.0; python_version < '3.9' +trustme==1.2.0; python_version >= '3.9' +cryptography==44.0.0 coverage==7.6.1; python_version < '3.9' -coverage==7.6.4; python_version >= '3.9' +coverage==7.6.9; python_version >= '3.9' coverage-conditional-plugin==0.9.0 -httpx==0.27.2 +httpx==0.28.1 # Documentation mkdocs==1.6.1 -mkdocs-material==9.5.43 +mkdocs-material==9.5.48 diff --git a/tests/middleware/test_wsgi.py b/tests/middleware/test_wsgi.py index a79a21342..69a40db8c 100644 --- a/tests/middleware/test_wsgi.py +++ b/tests/middleware/test_wsgi.py @@ -72,7 +72,7 @@ async def test_wsgi_post(wsgi_middleware: Callable) -> None: async with httpx.AsyncClient(transport=transport, base_url="http://testserver") as client: response = await client.post("/", json={"example": 123}) assert response.status_code == 200 - assert response.text == '{"example": 123}' + assert response.text == '{"example":123}' @pytest.mark.anyio