Skip to content

Commit fe62214

Browse files
committed
.
1 parent 971d4ab commit fe62214

File tree

5 files changed

+7
-71
lines changed

5 files changed

+7
-71
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
strategy:
102102
fail-fast: false
103103
matrix:
104-
python-version: ["3.7","3.8","3.9","3.11","3.12","3.13"]
104+
python-version: ["3.8","3.9","3.11","3.12","3.13"]
105105
# python3.6 reached EOL and is no longer being supported on
106106
# new versions of hosted runners on Github Actions
107107
# ubuntu-20.04 is the last version that supported python3.6

.github/workflows/test-integrations-dbs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
strategy:
125125
fail-fast: false
126126
matrix:
127-
python-version: ["3.6","3.7","3.8","3.9","3.11","3.12","3.13"]
127+
python-version: ["3.6","3.7","3.8","3.9","3.11","3.12"]
128128
# python3.6 reached EOL and is no longer being supported on
129129
# new versions of hosted runners on Github Actions
130130
# ubuntu-20.04 is the last version that supported python3.6

.github/workflows/test-integrations-tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
strategy:
116116
fail-fast: false
117117
matrix:
118-
python-version: ["3.6","3.7","3.8","3.9","3.10","3.11","3.12","3.13"]
118+
python-version: ["3.6","3.7","3.8","3.9","3.10","3.11","3.12"]
119119
# python3.6 reached EOL and is no longer being supported on
120120
# new versions of hosted runners on Github Actions
121121
# ubuntu-20.04 is the last version that supported python3.6

scripts/populate_tox/populate_tox.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@
4343
# suites over to this script. Some entries will probably stay forever
4444
# as they don't fit the mold (e.g. common, asgi, which don't have a 3rd party
4545
# pypi package to install in different versions).
46+
"aiohttp",
47+
"anthropic",
48+
"arq",
4649
"asgi",
50+
"asyncpg",
4751
"aws_lambda",
4852
"beam",
4953
"boto3",

tox.ini

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -289,41 +289,13 @@ envlist =
289289
# === Integrations - Auto-generated ===
290290
# These come from the populate_tox.py script. Eventually we should move all
291291
# integration tests there.
292-
# ~~~ AI ~~~
293-
{py3.7,py3.12,py3.13}-anthropic-v0.16.0
294-
{py3.7,py3.12,py3.13}-anthropic-v0.25.9
295-
{py3.7,py3.12,py3.13}-anthropic-v0.34.2
296-
{py3.8,py3.12,py3.13}-anthropic-v0.42.0
297-
298-
299-
# ~~~ DBs ~~~
300-
{py3.7,py3.12,py3.13}-asyncpg-v0.23.0
301-
{py3.7,py3.12,py3.13}-asyncpg-v0.25.0
302-
{py3.7,py3.12,py3.13}-asyncpg-v0.27.0
303-
{py3.8,py3.12,py3.13}-asyncpg-v0.30.0
304-
305-
306292
# ~~~ GraphQL ~~~
307293
{py3.8,py3.10,py3.11}-ariadne-v0.20.1
308294
{py3.8,py3.11,py3.12}-ariadne-v0.21
309295
{py3.8,py3.11,py3.12}-ariadne-v0.22
310296
{py3.8,py3.11,py3.12}-ariadne-v0.24.0
311297

312298

313-
# ~~~ Tasks ~~~
314-
{py3.7,py3.12,py3.13}-arq-v0.23
315-
{py3.7,py3.12,py3.13}-arq-v0.24.0
316-
{py3.7,py3.12,py3.13}-arq-v0.25.0
317-
{py3.8,py3.12,py3.13}-arq-v0.26.3
318-
319-
320-
# ~~~ Web 2 ~~~
321-
{py3.7,py3.12,py3.13}-aiohttp-v3.6.3
322-
{py3.7,py3.12,py3.13}-aiohttp-v3.8.6
323-
{py3.8,py3.12,py3.13}-aiohttp-v3.10.9
324-
{py3.9,py3.12,py3.13}-aiohttp-v3.11.11
325-
326-
327299

328300
[testenv]
329301
deps =
@@ -752,24 +724,6 @@ deps =
752724
# === Integrations - Auto-generated ===
753725
# These come from the populate_tox.py script. Eventually we should move all
754726
# integration tests there.
755-
# ~~~ AI ~~~
756-
anthropic-v0.16.0: anthropic==0.16.0
757-
anthropic-v0.25.9: anthropic==0.25.9
758-
anthropic-v0.34.2: anthropic==0.34.2
759-
anthropic-v0.42.0: anthropic==0.42.0
760-
anthropic: pytest-asyncio
761-
anthropic-v0.16.0: httpx<0.28.0
762-
anthropic-v0.25.9: httpx<0.28.0
763-
764-
765-
# ~~~ DBs ~~~
766-
asyncpg-v0.23.0: asyncpg==0.23.0
767-
asyncpg-v0.25.0: asyncpg==0.25.0
768-
asyncpg-v0.27.0: asyncpg==0.27.0
769-
asyncpg-v0.30.0: asyncpg==0.30.0
770-
asyncpg: pytest-asyncio
771-
772-
773727
# ~~~ GraphQL ~~~
774728
ariadne-v0.20.1: ariadne==0.20.1
775729
ariadne-v0.21: ariadne==0.21
@@ -780,28 +734,6 @@ deps =
780734
ariadne: httpx
781735

782736

783-
# ~~~ Tasks ~~~
784-
arq-v0.23: arq==0.23
785-
arq-v0.24.0: arq==0.24.0
786-
arq-v0.25.0: arq==0.25.0
787-
arq-v0.26.3: arq==0.26.3
788-
arq: fakeredis>=2.2.0,<2.8
789-
arq: pytest-asyncio
790-
arq: async-timeout
791-
arq-v0.23: pydantic<2
792-
arq-v0.24.0: pydantic<2
793-
arq-v0.25.0: pydantic<2
794-
795-
796-
# ~~~ Web 2 ~~~
797-
aiohttp-v3.6.3: aiohttp==3.6.3
798-
aiohttp-v3.8.6: aiohttp==3.8.6
799-
aiohttp-v3.10.9: aiohttp==3.10.9
800-
aiohttp-v3.11.11: aiohttp==3.11.11
801-
aiohttp: pytest-aiohttp
802-
aiohttp: pytest-asyncio
803-
804-
805737

806738
setenv =
807739
PYTHONDONTWRITEBYTECODE=1

0 commit comments

Comments
 (0)