From 4bcc02f735eb9f04c53f3bbcfc899104e32cfb34 Mon Sep 17 00:00:00 2001 From: arthur Date: Sun, 22 May 2016 14:43:35 +0200 Subject: [PATCH] Add future in requirements to fix python2 compatibility --- requirements.txt | 3 ++- setup.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1ee9877..14427e8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,9 @@ django-extra-views>=0.6.5 django-braces>=1.3.0 -djangorestframework<=3.3.3 +djangorestframework>=3.3.3 django-floppyforms>=1.6.2 django-filter>=0.13.0 django-crispy-forms>=1.3.2 django-debug-toolbar>=0.9.4 +future>=0.15.2 pytz==2016.4 diff --git a/setup.py b/setup.py index e237257..8294491 100644 --- a/setup.py +++ b/setup.py @@ -130,11 +130,12 @@ setup( 'django>=1.8.0', 'django-extra-views>=0.6.5', 'django-braces>=1.3.0', - 'djangorestframework<=3.3.3', + 'djangorestframework>=3.3.3', 'django-floppyforms>=1.6.2', 'django-filter>=0.13.0', 'django-crispy-forms>=1.3.2', - 'pytz==2014.7' + 'pytz==2014.7', + 'future>=0.15.2', ], extras_require={ 'testing': ['pytest', 'pytest-django', 'pytest-ipdb'],