Skip to content

Commit 775644b

Browse files
Update requirements to the official graphene 3.0 release (#1290)
1 parent e1a7d19 commit 775644b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

graphene_django/fields.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
from functools import partial
22

33
from django.db.models.query import QuerySet
4-
from graphql_relay.connection.arrayconnection import (
4+
5+
from graphql_relay.connection.array_connection import (
56
connection_from_array_slice,
67
cursor_to_offset,
78
get_offset_with_default,
89
offset_to_cursor,
910
)
11+
1012
from promise import Promise
1113

1214
from graphene import Int, NonNull

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@
6060
keywords="api graphql protocol rest relay graphene",
6161
packages=find_packages(exclude=["tests", "examples", "examples.*"]),
6262
install_requires=[
63-
"graphene>=3.0.0b5,<4",
63+
"graphene>=3.0,<4",
6464
"graphql-core>=3.1.0,<4",
65+
"graphql-relay>=3.1.1,<4",
6566
"Django>=2.2",
6667
"promise>=2.1",
6768
"text-unidecode",

0 commit comments

Comments
 (0)