File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 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]
1616requires =
@@ -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 ~~~
You can’t perform that action at this time.
0 commit comments