Use Django's six and require Django instead of six

This commit is contained in:
Ben Cole 2015-11-07 11:49:47 +01:00
parent dae0b257d6
commit 21b54e7db8
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'
]
)