misc: force Django 1.7 for now

Running with 1.8 yields "ImproperlyConfigured: Creating a ModelForm without
either the 'fields' attribute or the 'exclude' attribute is prohibited; form
ApiUserForm needs updating.".
This commit is contained in:
Frédéric Péters 2015-04-03 22:30:50 +02:00
parent c57eb9a287
commit 778bb3d72c
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
django >= 1.7
django >= 1.7, <1.8
django-jsonresponse >= 0.10, < 0.11
django-model-utils
django-jsonfield >= 0.9.3

View File

@ -47,7 +47,7 @@ setup(name='passerelle',
scripts=['manage.py'],
include_package_data=True,
install_requires=[
'django >= 1.7',
'django >= 1.7, <1.8',
'django-model-utils',
'django-jsonresponse==0.10',
'django-jsonfield >= 0.9.3',