0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00

feat(django1.9): Declare Django 1.9 support in setup.py

This commit is contained in:
Matt Westcott 2015-12-08 21:50:36 +00:00
parent b382f89b55
commit fdfffd2d87

View File

@ -21,7 +21,7 @@ except ImportError:
install_requires = [
"Django>=1.7.1,<1.9",
"Django>=1.7.1,<1.10",
"django-compressor>=1.4",
"django-modelcluster>=1.0",
"django-taggit>=0.13.0",
@ -62,6 +62,7 @@ setup(
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=install_requires,