Add future in requirements to fix python2 compatibility

This commit is contained in:
arthur 2016-05-22 14:43:35 +02:00
parent 23c256d6a0
commit 4bcc02f735
2 changed files with 5 additions and 3 deletions

View file

@ -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

View file

@ -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'],