From 46cdbd4e5375479c20c6ce29440fd13164ff8f2c Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 17 Nov 2014 20:58:51 +0100 Subject: [PATCH] fix django requirements: >= 1.7.1 and <1.8 1.7.0 had some bugs in migrations, avoid. 1.8 is not tested. --- requirements.d/all.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.d/all.txt b/requirements.d/all.txt index 85ca678..2717e5e 100644 --- a/requirements.d/all.txt +++ b/requirements.d/all.txt @@ -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 diff --git a/setup.py b/setup.py index 0bbf778..9fa3bc5 100644 --- a/setup.py +++ b/setup.py @@ -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',