Skip to content

Commit 7e59aa3

Browse files
committed
Fixed bug with django-filter dependence version.
1 parent 67fad8d commit 7e59aa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graphene_django_extras/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .paginations import LimitOffsetGraphqlPagination, PageGraphqlPagination, CursorGraphqlPagination
1010
from .types import DjangoObjectType, DjangoInputObjectType, DjangoListObjectType, DjangoSerializerType
1111

12-
VERSION = (0, 3, 8, 'final', '')
12+
VERSION = (0, 3, 9, 'final', '')
1313

1414
__version__ = get_version(VERSION)
1515

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def get_packages():
5858
'graphql-core>=2.1.0',
5959
'graphene>=2.1.3',
6060
'graphene-django>=2.2.0',
61-
'django-filter>=1.1.0',
61+
'django-filter>1.1.0',
6262
'djangorestframework>=3.6.0'
6363
],
6464
extras_require={

0 commit comments

Comments
 (0)