Skip to content

Commit 5d5d7f1

Browse files
Django v4, python 3.10 support for graphene-django v3 (#1281)
Co-authored-by: Yair Silbermintz <[email protected]>
1 parent 32667b5 commit 5d5d7f1

File tree

10 files changed

+27
-18
lines changed

10 files changed

+27
-18
lines changed

.github/workflows/tests.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ jobs:
1010
matrix:
1111
django: ["2.2", "3.0", "3.1", "3.2"]
1212
python-version: ["3.6", "3.7", "3.8", "3.9"]
13-
13+
include:
14+
- django: "3.2"
15+
python-version: "3.10"
16+
- django: "4.0"
17+
python-version: "3.10"
18+
- django: "main"
19+
python-version: "3.10"
1420
steps:
1521
- uses: actions/checkout@v2
1622
- name: Set up Python ${{ matrix.python-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ from graphene_django.views import GraphQLView
5555

5656
urlpatterns = [
5757
# ...
58-
path('graphql', GraphQLView.as_view(graphiql=True)),
58+
path('graphql/', GraphQLView.as_view(graphiql=True)),
5959
]
6060
```
6161

docs/authorization.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ For Django 2.2 and above:
198198
199199
urlpatterns = [
200200
# some other urls
201-
path('graphql', PrivateGraphQLView.as_view(graphiql=True, schema=schema)),
201+
path('graphql/', PrivateGraphQLView.as_view(graphiql=True, schema=schema)),
202202
]
203203
204204
.. _LoginRequiredMixin: https://docs.djangoproject.com/en/dev/topics/auth/default/#the-loginrequired-mixin

graphene_django/debug/exception/formating.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def wrap_exception(exception):
1111
exc_type=force_str(type(exception)),
1212
stack="".join(
1313
traceback.format_exception(
14-
etype=type(exception), value=exception, tb=exception.__traceback__
14+
exception, value=exception, tb=exception.__traceback__
1515
)
1616
),
1717
)

graphene_django/management/commands/graphql_schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def add_arguments(self, parser):
4848
class Command(CommandArguments):
4949
help = "Dump Graphene schema as a JSON or GraphQL file"
5050
can_import_settings = True
51-
requires_system_checks = False
51+
requires_system_checks = []
5252

5353
def save_json_file(self, out, schema_dict, indent):
5454
with open(out, "w") as outfile:

graphene_django/tests/urls.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from django.conf.urls import url
1+
from django.urls import path
22

33
from ..views import GraphQLView
44

55
urlpatterns = [
6-
url(r"^graphql/batch", GraphQLView.as_view(batch=True)),
7-
url(r"^graphql", GraphQLView.as_view(graphiql=True)),
6+
path("graphql/batch", GraphQLView.as_view(batch=True)),
7+
path("graphql", GraphQLView.as_view(graphiql=True)),
88
]

graphene_django/tests/urls_inherited.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from django.conf.urls import url
1+
from django.urls import path
22

33
from ..views import GraphQLView
44
from .schema_view import schema
@@ -10,4 +10,4 @@ class CustomGraphQLView(GraphQLView):
1010
pretty = True
1111

1212

13-
urlpatterns = [url(r"^graphql/inherited/$", CustomGraphQLView.as_view())]
13+
urlpatterns = [path("graphql/inherited/", CustomGraphQLView.as_view())]

graphene_django/tests/urls_pretty.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from django.conf.urls import url
1+
from django.urls import path
22

33
from ..views import GraphQLView
44
from .schema_view import schema
55

6-
urlpatterns = [url(r"^graphql", GraphQLView.as_view(schema=schema, pretty=True))]
6+
urlpatterns = [path("graphql", GraphQLView.as_view(schema=schema, pretty=True))]

graphene_django/utils/testing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from django.test import Client, TestCase, TransactionTestCase
55

6-
DEFAULT_GRAPHQL_URL = "/graphql/"
6+
DEFAULT_GRAPHQL_URL = "/graphql"
77

88

99
def graphql_query(

tox.ini

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}-django{22,30,31,32,main},
3+
py{36,37,38,39}-django{22,30,31},
4+
py{36,37,38,39,310}-django32,
5+
py{38,39,310}-django{40,main},
46
black,flake8
57

68
[gh-actions]
@@ -9,13 +11,15 @@ python =
911
3.7: py37
1012
3.8: py38
1113
3.9: py39
14+
3.10: py310
1215

1316
[gh-actions:env]
1417
DJANGO =
1518
2.2: django22
1619
3.0: django30
1720
3.1: django31
1821
3.2: django32
22+
4.0: django40
1923
main: djangomain
2024

2125
[testenv]
@@ -26,12 +30,11 @@ setenv =
2630
deps =
2731
-e.[test]
2832
psycopg2-binary
29-
django20: Django>=2.0,<2.1
30-
django21: Django>=2.1,<2.2
3133
django22: Django>=2.2,<3.0
32-
django30: Django>=3.0a1,<3.1
34+
django30: Django>=3.0,<3.1
3335
django31: Django>=3.1,<3.2
34-
django32: Django>=3.2a1,<3.3
36+
django32: Django>=3.2,<4.0
37+
django40: Django>=4.0,<4.1
3538
djangomain: https://github.com/django/django/archive/main.zip
3639
commands = {posargs:py.test --cov=graphene_django graphene_django examples}
3740

0 commit comments

Comments
 (0)