Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the python-packages group across 1 directory with 9 updates #2538

Merged
merged 5 commits into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tests/middleware/test_wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading