Skip to content

Commit 815de9f

Browse files
authored
toxgen: Remove unused code and rerun (#4313)
Noticed some unused code in toxgen, probably the result of a bad merge?
1 parent 8632281 commit 815de9f

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

scripts/populate_tox/populate_tox.py

-7
Original file line numberDiff line numberDiff line change
@@ -234,13 +234,6 @@ def get_supported_releases(
234234
integration, pypi_data["releases"], older_than
235235
)
236236

237-
# Determine Python support
238-
expected_python_versions = TEST_SUITE_CONFIG[integration].get("python")
239-
if expected_python_versions:
240-
expected_python_versions = SpecifierSet(expected_python_versions)
241-
else:
242-
expected_python_versions = SpecifierSet(f">={MIN_PYTHON_VERSION}")
243-
244237
def _supports_lowest(release: Version) -> bool:
245238
time.sleep(PYPI_COOLDOWN) # don't DoS PYPI
246239

tox.ini

+11-9
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-04-15T15:09:46.980440+00:00
13+
# Last generated: 2025-04-17T11:01:25.976599+00:00
1414

1515
[tox]
1616
requires =
@@ -177,6 +177,7 @@ envlist =
177177
{py3.8,py3.12,py3.13}-launchdarkly-v9.8.1
178178
{py3.8,py3.12,py3.13}-launchdarkly-v9.9.0
179179
{py3.8,py3.12,py3.13}-launchdarkly-v9.10.0
180+
{py3.8,py3.12,py3.13}-launchdarkly-v9.11.0
180181

181182
{py3.8,py3.12,py3.13}-openfeature-v0.7.5
182183
{py3.9,py3.12,py3.13}-openfeature-v0.8.1
@@ -204,9 +205,9 @@ envlist =
204205
{py3.8,py3.12,py3.13}-graphene-v3.4.3
205206

206207
{py3.8,py3.10,py3.11}-strawberry-v0.209.8
207-
{py3.8,py3.11,py3.12}-strawberry-v0.227.7
208-
{py3.8,py3.11,py3.12}-strawberry-v0.245.0
209-
{py3.9,py3.12,py3.13}-strawberry-v0.264.0
208+
{py3.8,py3.11,py3.12}-strawberry-v0.228.0
209+
{py3.8,py3.12,py3.13}-strawberry-v0.247.2
210+
{py3.9,py3.12,py3.13}-strawberry-v0.265.1
210211

211212

212213
# ~~~ Network ~~~
@@ -549,6 +550,7 @@ deps =
549550
launchdarkly-v9.8.1: launchdarkly-server-sdk==9.8.1
550551
launchdarkly-v9.9.0: launchdarkly-server-sdk==9.9.0
551552
launchdarkly-v9.10.0: launchdarkly-server-sdk==9.10.0
553+
launchdarkly-v9.11.0: launchdarkly-server-sdk==9.11.0
552554

553555
openfeature-v0.7.5: openfeature-sdk==0.7.5
554556
openfeature-v0.8.1: openfeature-sdk==0.8.1
@@ -585,13 +587,13 @@ deps =
585587
py3.6-graphene: aiocontextvars
586588

587589
strawberry-v0.209.8: strawberry-graphql[fastapi,flask]==0.209.8
588-
strawberry-v0.227.7: strawberry-graphql[fastapi,flask]==0.227.7
589-
strawberry-v0.245.0: strawberry-graphql[fastapi,flask]==0.245.0
590-
strawberry-v0.264.0: strawberry-graphql[fastapi,flask]==0.264.0
590+
strawberry-v0.228.0: strawberry-graphql[fastapi,flask]==0.228.0
591+
strawberry-v0.247.2: strawberry-graphql[fastapi,flask]==0.247.2
592+
strawberry-v0.265.1: strawberry-graphql[fastapi,flask]==0.265.1
591593
strawberry: httpx
592594
strawberry-v0.209.8: pydantic<2.11
593-
strawberry-v0.227.7: pydantic<2.11
594-
strawberry-v0.245.0: pydantic<2.11
595+
strawberry-v0.228.0: pydantic<2.11
596+
strawberry-v0.247.2: pydantic<2.11
595597

596598

597599
# ~~~ Network ~~~

0 commit comments

Comments
 (0)