Skip to content

Commit d28dc68

Browse files
committed
Updated requirements to use graphql-core >= 2.1
1 parent bfd6fd7 commit d28dc68

File tree

6 files changed

+3
-945
lines changed

6 files changed

+3
-945
lines changed

graphene/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
from .utils.module_loading import lazy_import
4343

4444

45-
VERSION = (2, 1, 2, "final", 0)
45+
VERSION = (2, 1, 3, "final", 0)
4646

4747
__version__ = get_version(VERSION)
4848

graphene/pyutils/compat.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33
import six
44

5-
try:
6-
from enum import Enum
7-
except ImportError:
8-
from .enum import Enum
5+
from graphql.pyutils.compat import Enum
96

107
try:
118
from inspect import signature

0 commit comments

Comments
 (0)