require django 1.6.x, fixes #141

This commit is contained in:
Thomas Waldmann 2014-07-17 15:13:41 +02:00
parent addd486e5e
commit 63774d0757
2 changed files with 5 additions and 5 deletions

View File

@ -8,9 +8,7 @@ Important notes:
* WE_HAVE_SSL configuration setting name was changed to WE_HAVE_TLS.
Please update your configuration, if you use it.
* using django 1.6.x is strongly recommended, 1.5 might need fixing
nsupdate/login/urls.py (see comment there).
https://github.com/nsupdate-info/nsupdate.info/issues/141
* Django 1.6.x required now, if you want to use 1.5.x: see setup.py
New Features:
@ -54,6 +52,7 @@ Other changes:
* replaced "SSL" by "TLS" everywhere.
SSL is the old/outdated name. Since 1999, it's called TLS.
Release 0.6.0
-------------

View File

@ -50,8 +50,9 @@ setup(
zip_safe=False,
platforms='any',
install_requires=install_requires + [
'django >=1.5.3, <1.7', # 1.5.3 has the session serializer configurable
# 1.7 is not tested yet
'django >=1.6, <1.7', # 1.7 is not tested yet
# django >= 1.5.3 also works, but needs a code change, see
# https://github.com/nsupdate-info/nsupdate.info/issues/141
'south',
'django-bootstrap-form',
'django-registration',