Fix for python2.7

This commit is contained in:
Linmao Song 2018-01-26 17:19:58 +00:00
parent bd80386b5e
commit 177e1bc092

View file

@ -49,7 +49,8 @@ setup(
}, },
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[
'django>=1.8', 'django>=1.8,<2.0;python_version<"3.4"',
'django>=2.0;python_version>="3.4"',
'pygments>=1.6', 'pygments>=1.6',
'django-markup>=1.0', 'django-markup>=1.0',
'django-csp>=3.3', 'django-csp>=3.3',