Skip to content

Commit b8480ae

Browse files
test with django 4.1
1 parent 9b193ba commit b8480ae

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
django: ["2.2", "3.0", "3.1", "3.2", "4.0"]
11+
django: ["2.2", "3.0", "3.1", "3.2", "4.0", "4.1"]
1212
python-version: ["3.8", "3.9"]
1313
include:
1414
- django: "2.2"
@@ -31,6 +31,8 @@ jobs:
3131
python-version: "3.10"
3232
- django: "4.0"
3333
python-version: "3.10"
34+
- django: "4.1"
35+
python-version: "3.10"
3436
steps:
3537
- uses: actions/checkout@v3
3638
- name: Set up Python ${{ matrix.python-version }}

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ DJANGO =
2121
3.1: django31
2222
3.2: django32
2323
4.0: django40
24+
4.1: django41
2425
master: djangomaster
2526

2627
[testenv]
@@ -36,6 +37,7 @@ deps =
3637
django31: Django>=3.1,<3.2
3738
django32: Django>=3.2,<4.0
3839
django40: Django>=4.0,<4.1
40+
django41: Django>=4.1,<4.2
3941
djangomaster: https://github.com/django/django/archive/master.zip
4042
commands = {posargs:py.test --cov=graphene_django graphene_django examples}
4143

0 commit comments

Comments
 (0)