mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-17 06:30:25 +00:00
Add future in requirements to fix python2 compatibility
This commit is contained in:
parent
23c256d6a0
commit
4bcc02f735
2 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
5
setup.py
5
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'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue