Skip to content

Commit 9d0cde4

Browse files
committed
fix(test): Properly modify httpx anyio pin
Previous commit did not properly modify the version pin to the new required one for httpcore asyncio GH-4601
1 parent 21b1cda commit 9d0cde4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/populate_tox/tox.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ deps =
207207
httpx-v0.25: pytest-httpx==0.25.0
208208
httpx: pytest-httpx
209209
# anyio is a dep of httpx
210-
httpx: anyio<4.0.0
210+
httpx: anyio>=3,<5
211211
httpx-v0.16: httpx~=0.16.0
212212
httpx-v0.18: httpx~=0.18.0
213213
httpx-v0.20: httpx~=0.20.0

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-07-29T08:10:08.981379+00:00
13+
# Last generated: 2025-07-29T08:26:02.455474+00:00
1414

1515
[tox]
1616
requires =
@@ -378,7 +378,7 @@ deps =
378378
httpx-v0.25: pytest-httpx==0.25.0
379379
httpx: pytest-httpx
380380
# anyio is a dep of httpx
381-
httpx: anyio<4.0.0
381+
httpx: anyio>=3,<5
382382
httpx-v0.16: httpx~=0.16.0
383383
httpx-v0.18: httpx~=0.18.0
384384
httpx-v0.20: httpx~=0.20.0

0 commit comments

Comments
 (0)