Skip to content

Commit 2e775c8

Browse files
committed
Add Python 3.9 to tox
1 parent 2f7a678 commit 2e775c8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
max-parallel: 4
1010
matrix:
1111
django: ["2.2", "3.0", "3.1"]
12-
python-version: ["3.6", "3.7", "3.8"]
12+
python-version: ["3.6", "3.7", "3.8", "3.9"]
1313

1414
steps:
1515
- uses: actions/checkout@v1

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
envlist =
3-
py{36,37,38}-django{22,30,31,main},
3+
py{36,37,38,39}-django{22,30,31,main},
44
black,flake8
55

66
[gh-actions]
77
python =
88
3.6: py36
99
3.7: py37
1010
3.8: py38
11+
3.9: py39
1112

1213
[gh-actions:env]
1314
DJANGO =
@@ -35,13 +36,13 @@ deps =
3536
commands = {posargs:py.test --cov=graphene_django graphene_django examples}
3637

3738
[testenv:black]
38-
basepython = python3.8
39+
basepython = python3.9
3940
deps = -e.[dev]
4041
commands =
4142
black --exclude "/migrations/" graphene_django examples setup.py --check
4243

4344
[testenv:flake8]
44-
basepython = python3.8
45+
basepython = python3.9
4546
deps = -e.[dev]
4647
commands =
4748
flake8 graphene_django examples setup.py

0 commit comments

Comments
 (0)