build: limit to django 1.8

STATICFILES_FINDERS = global_settings.STATICFILES_FINDERS + ('gadjo.finders.XStaticFinder',)
TypeError: can only concatenate list (not "tuple") to list
This commit is contained in:
Frédéric Péters 2016-07-28 16:25:55 +02:00
parent 244ffb8f0d
commit 2360978330
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -85,7 +85,7 @@ setup(name='passerelle',
scripts=['manage.py'],
include_package_data=True,
install_requires=[
'django >= 1.7',
'django >= 1.7, <1.9',
'django-model-utils',
'django-jsonfield < 1.0.0',
'requests',