specify django version compatibility (#23284)

This commit is contained in:
Emmanuel Cazenave 2018-04-19 13:17:33 +02:00
parent f345362f56
commit f6d0663e55
1 changed files with 2 additions and 2 deletions

View File

@ -120,9 +120,9 @@ setup(name='django-journal',
'test': test
},
install_requires=[
'django >= 1.7',
'django >= 1.7,<1.9',
'django-model-utils',
],
setup_requires=[
'django >= 1.4.2',
'django >= 1.7,<1.9',
])