Skip to content

Commit 6834385

Browse files
authored
support python 3.13 (#1561)
1 parent c335c5f commit 6834385

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
include:
28+
- {name: '3.13', python: '3.13-dev', os: ubuntu-latest, tox: py313}
2829
- {name: '3.12', python: '3.12', os: ubuntu-latest, tox: py312}
2930
- {name: '3.11', python: '3.11', os: ubuntu-latest, tox: py311}
3031
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def run_tests(self):
7676
"Programming Language :: Python :: 3.10",
7777
"Programming Language :: Python :: 3.11",
7878
"Programming Language :: Python :: 3.12",
79+
"Programming Language :: Python :: 3.13",
7980
],
8081
keywords="api graphql protocol rest relay graphene",
8182
packages=find_packages(exclude=["examples*"]),

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{8,9,10,11,12}, mypy, pre-commit
2+
envlist = py3{8,9,10,11,12,13}, mypy, pre-commit
33
skipsdist = true
44

55
[testenv]
@@ -8,7 +8,7 @@ deps =
88
setenv =
99
PYTHONPATH = .:{envdir}
1010
commands =
11-
py{38,39,310,311,12}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
11+
py{38,39,310,311,12,13}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
1212

1313
[testenv:pre-commit]
1414
basepython = python3.10

0 commit comments

Comments
 (0)