Skip to content

Commit

Permalink
made compatible with Django 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Mundt committed Sep 19, 2019
1 parent 4d8d40f commit 77aef2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drf_nested_routing/routers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from django.core.urlresolvers import NoReverseMatch
from django.urls import NoReverseMatch
from rest_framework import views
from rest_framework.reverse import reverse
from rest_framework.response import Response
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
author_email='[email protected]',
packages=find_packages(exclude=['tests*']),
install_requires=[
'django>=1.6',
'djangorestframework>=3.4.0',
'django>=2.0',
'djangorestframework>=3.10.3',
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 77aef2d

Please sign in to comment.