From 05d566d152527338a4fc0158b45d2626ee25c86c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 30 Dec 2017 11:01:58 +0100 Subject: [PATCH] limit to django 1.11 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 27948bb..fb0fc00 100755 --- a/setup.py +++ b/setup.py @@ -91,12 +91,12 @@ setup(name="django-mellon", include_package_data=True, packages=find_packages(), install_requires=[ - 'django>=1.5', + 'django>=1.5,<2.0', 'requests', 'isodate', ], setup_requires=[ - 'django', + 'django>=1.5,<2.0', ], tests_require=[ 'nose>=0.11.4',