File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,23 @@ websockets==13.1
11
11
12
12
# Packaging
13
13
build == 1.2.2.post1
14
- twine == 5.1 .1
14
+ twine == 6.0 .1
15
15
16
16
# Testing
17
- ruff == 0.7.1
18
- pytest == 8.3.3
17
+ ruff == 0.8.3
18
+ pytest == 8.3.4
19
19
pytest-mock == 3.14.0
20
20
mypy == 1.13.0
21
21
types-click == 7.1.8
22
22
types-pyyaml == 6.0.12.20240917
23
- trustme == 1.1.0
24
- cryptography == 43.0.3
23
+ trustme == 1.1.0 ; python_version < '3.9'
24
+ trustme == 1.2.0 ; python_version >= '3.9'
25
+ cryptography == 44.0.0
25
26
coverage == 7.6.1 ; python_version < '3.9'
26
- coverage == 7.6.4 ; python_version >= '3.9'
27
+ coverage == 7.6.9 ; python_version >= '3.9'
27
28
coverage-conditional-plugin == 0.9.0
28
- httpx == 0.27.2
29
+ httpx == 0.28.1
29
30
30
31
# Documentation
31
32
mkdocs == 1.6.1
32
- mkdocs-material == 9.5.43
33
+ mkdocs-material == 9.5.48
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ async def test_wsgi_post(wsgi_middleware: Callable) -> None:
72
72
async with httpx .AsyncClient (transport = transport , base_url = "http://testserver" ) as client :
73
73
response = await client .post ("/" , json = {"example" : 123 })
74
74
assert response .status_code == 200
75
- assert response .text == '{"example": 123}'
75
+ assert response .text == '{"example":123}'
76
76
77
77
78
78
@pytest .mark .anyio
You can’t perform that action at this time.
0 commit comments