fix django requirements: >= 1.7.1 and <1.8

1.7.0 had some bugs in migrations, avoid. 1.8 is not tested.
This commit is contained in:
Thomas Waldmann 2014-11-17 20:58:51 +01:00
parent 4b5915ab3f
commit 46cdbd4e53
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# packages always needed
dnspython
netaddr
django==1.7.1
django>=1.7.1, <1.8
django-bootstrap-form
django-registration-redux
django-extensions

View File

@ -55,7 +55,7 @@ setup(
platforms='any',
install_requires=install_requires + [
'netaddr',
'django>=1.7',
'django>=1.7.1, <1.8',
'django-bootstrap-form',
'django-registration-redux',
'django-extensions',