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

View File

@ -50,8 +50,9 @@ setup(
zip_safe=False, zip_safe=False,
platforms='any', platforms='any',
install_requires=install_requires + [ install_requires=install_requires + [
'django >=1.5.3, <1.7', # 1.5.3 has the session serializer configurable 'django >=1.6, <1.7', # 1.7 is not tested yet
# 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', 'south',
'django-bootstrap-form', 'django-bootstrap-form',
'django-registration', 'django-registration',