diff --git a/graphene_django_extras/__init__.py b/graphene_django_extras/__init__.py index e0d5007..849e270 100644 --- a/graphene_django_extras/__init__.py +++ b/graphene_django_extras/__init__.py @@ -8,7 +8,7 @@ from .types import DjangoObjectType, DjangoInputObjectType, DjangoListObjectType from .subscriptions import * -VERSION = (0, 1, 0, 'beta', '1') +VERSION = (0, 1, 0, 'alpha', '9') __version__ = get_version(VERSION) diff --git a/setup.py b/setup.py index 4b5b77b..54cce49 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,9 @@ def get_packages(): packages=get_packages(), install_requires=[ - 'graphene-django>=2.0', + 'graphql-core==2.0.dev20171009101843', + 'graphene==2.0.dev20170802065539', + 'graphene-django==2.0.dev2017083101', 'Django>=1.8.0', 'django-filter>=1.0.4', 'djangorestframework~=3.6.0',