Skip to content

Commit b0ee152

Browse files
committed
.
1 parent f0de66b commit b0ee152

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

scripts/populate_tox/populate_tox.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,12 +345,14 @@ def supported_python_versions(
345345
and curr in custom_supported_versions
346346
):
347347
supported.append(curr)
348+
348349
elif version is not None and isinstance(
349350
custom_supported_versions, dict
350351
):
351352
for v, py in custom_supported_versions.items():
352-
if version in v and curr in py:
353-
supported.append(curr)
353+
if version in v:
354+
if curr in py:
355+
supported.append(curr)
354356
break
355357
else:
356358
supported.append(curr)

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-09-15T15:06:00.206204+00:00
13+
# Last generated: 2025-09-15T15:10:46.296210+00:00
1414

1515
[tox]
1616
requires =
@@ -215,7 +215,7 @@ envlist =
215215
{py3.6,py3.8,py3.9}-httpx-v0.16.1
216216
{py3.6,py3.9,py3.10}-httpx-v0.20.0
217217
{py3.7,py3.10,py3.11}-httpx-v0.24.1
218-
{py3.8,py3.11,py3.12}-httpx-v0.28.1
218+
{py3.9,py3.11,py3.12}-httpx-v0.28.1
219219

220220

221221
# ~~~ Tasks ~~~

0 commit comments

Comments
 (0)