From 2225faae97be97e5c88338e4f46cd586d4e1090b Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Thu, 21 Jan 2016 11:35:19 +0000 Subject: [PATCH] Pin Django modelcluster to 1.1 Prevents possibly incompatible versions from being automatically installed in the future. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 54b2431f2..d564370c1 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ except ImportError: install_requires = [ "Django>=1.8.1,<1.10", "django-compressor>=1.4", - "django-modelcluster>=1.1", + "django-modelcluster>=1.1,<1.2", "django-taggit>=0.17.5", "django-treebeard==3.0", "djangorestframework>=3.1.3",