Skip to content

Commit c365900

Browse files
committed
fix
1 parent 9c829da commit c365900

File tree

3 files changed

+35
-21
lines changed

3 files changed

+35
-21
lines changed

.github/workflows/test-integrations-web-2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.6","3.7","3.8","3.11","3.12","3.13"]
32+
python-version: ["3.6","3.7","3.8","3.9","3.11","3.12","3.13"]
3333
# python3.6 reached EOL and is no longer being supported on
3434
# new versions of hosted runners on Github Actions
3535
# ubuntu-20.04 is the last version that supported python3.6

scripts/populate_tox/tox.jinja

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ envlist =
172172
{py3.9,py3.11,py3.12}-langchain-latest
173173
{py3.9,py3.11,py3.12}-langchain-notiktoken
174174

175+
# LaunchDarkly
176+
{py3.8,py3.12,py3.13}-launchdarkly-v9.8.0
177+
{py3.8,py3.12,py3.13}-launchdarkly-latest
178+
175179
# Litestar
176180
{py3.8,py3.11}-litestar-v{2.0}
177181
{py3.8,py3.11,py3.12}-litestar-v{2.6}
@@ -193,10 +197,6 @@ envlist =
193197
{py3.8,py3.12,py3.13}-openfeature-v0.7
194198
{py3.8,py3.12,py3.13}-openfeature-latest
195199

196-
# LaunchDarkly
197-
{py3.8,py3.12,py3.13}-launchdarkly-v9.8.0
198-
{py3.8,py3.12,py3.13}-launchdarkly-latest
199-
200200
# OpenTelemetry (OTel)
201201
{py3.7,py3.9,py3.12,py3.13}-opentelemetry
202202

@@ -251,9 +251,8 @@ envlist =
251251
# Sanic
252252
{py3.6,py3.7}-sanic-v{0.8}
253253
{py3.6,py3.8}-sanic-v{20}
254-
{py3.7,py3.11}-sanic-v{22}
255-
{py3.7,py3.11}-sanic-v{23}
256-
{py3.8,py3.11,py3.12}-sanic-latest
254+
{py3.8,py3.11,py3.12}-sanic-v{24.6}
255+
{py3.9,py3.12,py3.13}-sanic-latest
257256

258257
# Spark
259258
{py3.8,py3.10,py3.11}-spark-v{3.1,3.3,3.5}
@@ -295,6 +294,10 @@ envlist =
295294
{py3.7,py3.12,py3.13}-typer-v{0.15}
296295
{py3.7,py3.12,py3.13}-typer-latest
297296

297+
# Unleash
298+
{py3.8,py3.12,py3.13}-unleash-v6.0.1
299+
{py3.8,py3.12,py3.13}-unleash-latest
300+
298301
# === Integrations - Auto-generated ===
299302
# These come from the populate_tox.py script. Eventually we should move all
300303
# integration tests there.
@@ -669,13 +672,12 @@ deps =
669672
# Sanic
670673
sanic: websockets<11.0
671674
sanic: aiohttp
672-
sanic-v{22,23}: sanic_testing
675+
sanic-v{24.6}: sanic_testing
673676
sanic-latest: sanic_testing
674677
{py3.6}-sanic: aiocontextvars==0.2.1
675678
sanic-v0.8: sanic~=0.8.0
676679
sanic-v20: sanic~=20.0
677-
sanic-v22: sanic~=22.0
678-
sanic-v23: sanic~=23.0
680+
sanic-v24.6: sanic~=24.6.0
679681
sanic-latest: sanic
680682
681683
# Spark
@@ -749,6 +751,10 @@ deps =
749751
typer-v0.15: typer~=0.15.0
750752
typer-latest: typer
751753
754+
# Unleash
755+
unleash-v6.0.1: UnleashClient~=6.0.1
756+
unleash-latest: UnleashClient
757+
752758
# === Integrations - Auto-generated ===
753759
# These come from the populate_tox.py script. Eventually we should move all
754760
# integration tests there.
@@ -832,6 +838,7 @@ setenv =
832838
tornado: TESTPATH=tests/integrations/tornado
833839
trytond: TESTPATH=tests/integrations/trytond
834840
typer: TESTPATH=tests/integrations/typer
841+
unleash: TESTPATH=tests/integrations/typer
835842
socket: TESTPATH=tests/integrations/socket
836843
837844
passenv =

tox.ini

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ envlist =
172172
{py3.9,py3.11,py3.12}-langchain-latest
173173
{py3.9,py3.11,py3.12}-langchain-notiktoken
174174

175+
# LaunchDarkly
176+
{py3.8,py3.12,py3.13}-launchdarkly-v9.8.0
177+
{py3.8,py3.12,py3.13}-launchdarkly-latest
178+
175179
# Litestar
176180
{py3.8,py3.11}-litestar-v{2.0}
177181
{py3.8,py3.11,py3.12}-litestar-v{2.6}
@@ -193,10 +197,6 @@ envlist =
193197
{py3.8,py3.12,py3.13}-openfeature-v0.7
194198
{py3.8,py3.12,py3.13}-openfeature-latest
195199

196-
# LaunchDarkly
197-
{py3.8,py3.12,py3.13}-launchdarkly-v9.8.0
198-
{py3.8,py3.12,py3.13}-launchdarkly-latest
199-
200200
# OpenTelemetry (OTel)
201201
{py3.7,py3.9,py3.12,py3.13}-opentelemetry
202202

@@ -251,9 +251,8 @@ envlist =
251251
# Sanic
252252
{py3.6,py3.7}-sanic-v{0.8}
253253
{py3.6,py3.8}-sanic-v{20}
254-
{py3.7,py3.11}-sanic-v{22}
255-
{py3.7,py3.11}-sanic-v{23}
256-
{py3.8,py3.11,py3.12}-sanic-latest
254+
{py3.8,py3.11,py3.12}-sanic-v{24.6}
255+
{py3.9,py3.12,py3.13}-sanic-latest
257256

258257
# Spark
259258
{py3.8,py3.10,py3.11}-spark-v{3.1,3.3,3.5}
@@ -295,6 +294,10 @@ envlist =
295294
{py3.7,py3.12,py3.13}-typer-v{0.15}
296295
{py3.7,py3.12,py3.13}-typer-latest
297296

297+
# Unleash
298+
{py3.8,py3.12,py3.13}-unleash-v6.0.1
299+
{py3.8,py3.12,py3.13}-unleash-latest
300+
298301
# === Integrations - Auto-generated ===
299302
# These come from the populate_tox.py script. Eventually we should move all
300303
# integration tests there.
@@ -660,13 +663,12 @@ deps =
660663
# Sanic
661664
sanic: websockets<11.0
662665
sanic: aiohttp
663-
sanic-v{22,23}: sanic_testing
666+
sanic-v{24.6}: sanic_testing
664667
sanic-latest: sanic_testing
665668
{py3.6}-sanic: aiocontextvars==0.2.1
666669
sanic-v0.8: sanic~=0.8.0
667670
sanic-v20: sanic~=20.0
668-
sanic-v22: sanic~=22.0
669-
sanic-v23: sanic~=23.0
671+
sanic-v24.6: sanic~=24.6.0
670672
sanic-latest: sanic
671673

672674
# Spark
@@ -740,6 +742,10 @@ deps =
740742
typer-v0.15: typer~=0.15.0
741743
typer-latest: typer
742744

745+
# Unleash
746+
unleash-v6.0.1: UnleashClient~=6.0.1
747+
unleash-latest: UnleashClient
748+
743749
# === Integrations - Auto-generated ===
744750
# These come from the populate_tox.py script. Eventually we should move all
745751
# integration tests there.
@@ -807,6 +813,7 @@ setenv =
807813
tornado: TESTPATH=tests/integrations/tornado
808814
trytond: TESTPATH=tests/integrations/trytond
809815
typer: TESTPATH=tests/integrations/typer
816+
unleash: TESTPATH=tests/integrations/typer
810817
socket: TESTPATH=tests/integrations/socket
811818

812819
passenv =

0 commit comments

Comments
 (0)