Skip to content

Commit c925a32

Browse files
authored
CI: add Django 4.2 (#1420)
* CI: add Django 4.2 * fix tox
1 parent 8934393 commit c925a32

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,13 +8,15 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
django: ["3.2", "4.0", "4.1"]
11+
django: ["3.2", "4.0", "4.1", "4.2"]
1212
python-version: ["3.8", "3.9", "3.10"]
1313
include:
1414
- django: "3.2"
1515
python-version: "3.7"
1616
- django: "4.1"
1717
python-version: "3.11"
18+
- django: "4.2"
19+
python-version: "3.11"
1820
steps:
1921
- uses: actions/checkout@v3
2022
- name: Set up Python ${{ matrix.python-version }}

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ DJANGO =
1818
3.2: django32
1919
4.0: django40
2020
4.1: django41
21+
4.2: django42
2122
main: djangomain
2223

2324
[testenv]
@@ -32,6 +33,7 @@ deps =
3233
django32: Django>=3.2,<4.0
3334
django40: Django>=4.0,<4.1
3435
django41: Django>=4.1,<4.2
36+
django42: Django>=4.2,<4.3
3537
djangomain: https://github.com/django/django/archive/main.zip
3638
commands = {posargs:py.test --cov=graphene_django graphene_django examples}
3739

0 commit comments

Comments
 (0)