Merge pull request #25 from wengole/master

Use Django's six and require Django instead of six
This commit is contained in:
Andrew Godwin 2015-11-07 14:24:06 +01:00
commit 7b3845b0b2
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
from django.http import HttpResponse
from six import PY3
from django.utils.six import PY3
def encode_response(response):

View File

@ -11,6 +11,6 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
'six',
'Django'
]
)