Skip to content

Commit 153bae2

Browse files
committed
try ariadne
1 parent 33e66b2 commit 153bae2

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

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

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

scripts/populate_tox/populate_tox.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
This scripts populates tox.ini automatically using release data from PYPI.
2+
This script populates tox.ini automatically using release data from PYPI.
33
"""
44

55
import functools
@@ -44,7 +44,6 @@
4444
# as they don't fit the mold (e.g. common, asgi).
4545
"aiohttp",
4646
"anthropic",
47-
"ariadne",
4847
"arq",
4948
"asgi",
5049
"asyncpg",

scripts/populate_tox/tox.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ envlist =
4141
{py3.7,py3.11,py3.12}-anthropic-latest
4242

4343
# Ariadne
44-
{py3.8,py3.11}-ariadne-v{0.20}
45-
{py3.8,py3.12,py3.13}-ariadne-latest
44+
#{py3.8,py3.11}-ariadne-v{0.20}
45+
#{py3.8,py3.12,py3.13}-ariadne-latest
4646

4747
# Arq
4848
{py3.7,py3.11}-arq-v{0.23}

tox.ini

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ envlist =
4141
{py3.7,py3.11,py3.12}-anthropic-latest
4242

4343
# Ariadne
44-
{py3.8,py3.11}-ariadne-v{0.20}
45-
{py3.8,py3.12,py3.13}-ariadne-latest
44+
#{py3.8,py3.11}-ariadne-v{0.20}
45+
#{py3.8,py3.12,py3.13}-ariadne-latest
4646

4747
# Arq
4848
{py3.7,py3.11}-arq-v{0.23}
@@ -301,6 +301,12 @@ envlist =
301301
# === Integrations - Auto-generated ===
302302
# These come from the populate_tox.py script. Eventually we should move all
303303
# integration tests there.
304+
# ~~~ GraphQL ~~~
305+
{py3.8,py3.10,py3.11}-ariadne-v0.20.1
306+
{py3.8,py3.11,py3.12}-ariadne-v0.21
307+
{py3.8,py3.11,py3.12}-ariadne-v0.22
308+
{py3.8,py3.11,py3.12}-ariadne-v0.24.0
309+
304310

305311
[testenv]
306312
deps =
@@ -749,6 +755,15 @@ deps =
749755
# === Integrations - Auto-generated ===
750756
# These come from the populate_tox.py script. Eventually we should move all
751757
# integration tests there.
758+
# ~~~ GraphQL ~~~
759+
ariadne-v0.20.1: ariadne==0.20.1
760+
ariadne-v0.21: ariadne==0.21
761+
ariadne-v0.22: ariadne==0.22
762+
ariadne-v0.24.0: ariadne==0.24.0
763+
ariadne: fastapi
764+
ariadne: flask
765+
ariadne: httpx
766+
752767

753768
setenv =
754769
PYTHONDONTWRITEBYTECODE=1

0 commit comments

Comments
 (0)