Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-graphql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6","3.7","3.8","3.9","3.10","3.11","3.12","3.13"]
python-version: ["3.6","3.8","3.9","3.10","3.11","3.12","3.13"]
# python3.6 reached EOL and is no longer being supported on
# new versions of hosted runners on Github Actions
# ubuntu-20.04 is the last version that supported python3.6
Expand Down
20 changes: 20 additions & 0 deletions scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@
"*": ["fastapi", "flask", "httpx"],
},
"python": ">=3.8",
"num_versions": 2,
},
"arq": {
"package": "arq",
"deps": {
"*": ["async-timeout", "pytest-asyncio", "fakeredis>=2.2.0,<2.8"],
"<=0.23": ["pydantic<2"],
},
"num_versions": 2,
},
"asyncpg": {
"package": "asyncpg",
Expand All @@ -46,6 +48,7 @@
"beam": {
"package": "apache-beam",
"python": ">=3.7",
"num_versions": 2,
},
"boto3": {
"package": "boto3",
Expand All @@ -71,9 +74,11 @@
"deps": {
"*": ["pytest-chalice"],
},
"num_versions": 2,
},
"clickhouse_driver": {
"package": "clickhouse-driver",
"num_versions": 2,
},
"cohere": {
"package": "cohere",
Expand All @@ -100,6 +105,7 @@
},
"dramatiq": {
"package": "dramatiq",
"num_versions": 2,
},
"falcon": {
"package": "falcon",
Expand Down Expand Up @@ -135,6 +141,7 @@
},
"gql": {
"package": "gql[all]",
"num_versions": 2,
},
"graphene": {
"package": "graphene",
Expand Down Expand Up @@ -171,6 +178,7 @@
},
"huey": {
"package": "huey",
"num_versions": 2,
},
"huggingface_hub": {
"package": "huggingface_hub",
Expand Down Expand Up @@ -204,6 +212,7 @@
},
"launchdarkly": {
"package": "launchdarkly-server-sdk",
"num_versions": 2,
},
"litestar": {
"package": "litestar",
Expand All @@ -214,6 +223,7 @@
},
"loguru": {
"package": "loguru",
"num_versions": 2,
},
"openai-base": {
"package": "openai",
Expand Down Expand Up @@ -242,9 +252,11 @@
},
"openfeature": {
"package": "openfeature-sdk",
"num_versions": 2,
},
"pure_eval": {
"package": "pure_eval",
"num_versions": 2,
},
"pymongo": {
"package": "pymongo",
Expand All @@ -271,6 +283,7 @@
],
"py3.8": ["taskgroup==0.0.0a4"],
},
"num_versions": 2,
},
"ray": {
"package": "ray",
Expand All @@ -288,6 +301,7 @@
},
"redis_py_cluster_legacy": {
"package": "redis-py-cluster",
"num_versions": 2,
},
"requests": {
"package": "requests",
Expand Down Expand Up @@ -352,19 +366,22 @@
},
"python": "<=3.11",
"include": "!=2.0.0a1,!=2.0.0a2", # these are not relevant as there will never be a stable 2.0 release (starlite continues as litestar)
"num_versions": 2,
},
"statsig": {
"package": "statsig",
"deps": {
"*": ["typing_extensions"],
},
"num_versions": 2,
},
"strawberry": {
"package": "strawberry-graphql[fastapi,flask]",
"deps": {
"*": ["httpx"],
"<=0.262.5": ["pydantic<2.11"],
},
"num_versions": 2,
},
"tornado": {
"package": "tornado",
Expand All @@ -375,6 +392,7 @@
], # https://github.com/tornadoweb/tornado/pull/3382
"py3.6": ["aiocontextvars"],
},
"num_versions": 2,
},
"trytond": {
"package": "trytond",
Expand All @@ -385,8 +403,10 @@
},
"typer": {
"package": "typer",
"num_versions": 2,
},
"unleash": {
"package": "UnleashClient",
"num_versions": 2,
},
}
Loading