misc: lower django version to 1.7 in setup.py, to build on jessie

This commit is contained in:
Frédéric Péters 2019-09-22 10:49:15 +02:00
parent e3a6586a00
commit b34e0de5dd
1 changed files with 2 additions and 2 deletions

View File

@ -91,13 +91,13 @@ setup(name="django-mellon",
include_package_data=True,
packages=find_packages(),
install_requires=[
'django>=1.8,<2.3',
'django>=1.7,<2.3',
'requests',
'isodate',
'atomicwrites',
],
setup_requires=[
'django>=1.8,<2.3',
'django>=1.7,<2.3',
],
tests_require=[
'nose>=0.11.4',