From 447dd826f7238c8ea3fdc236b682979e338d2123 Mon Sep 17 00:00:00 2001 From: James Murty Date: Wed, 22 Feb 2017 13:51:59 +1100 Subject: [PATCH] Pin django-dynamic-fixture to avoid test failures for polymorphic models --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 76fa79c..e506a80 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,10 @@ install_requires=[ 'Django<1.9', 'django-dynamic-fixture', + # TODO Specific version of django-dynamic-fixture is necessary to avoid + # AttributeError: can't set attribute` failures on polymorphic models. + # See https://github.com/paulocheque/django-dynamic-fixture/pull/59 + 'django-dynamic-fixture==1.9.0+0.caeb3427399edd3b0d589516993c7da55e0de560.ixc', 'django-icekit', 'django-polymorphic', 'django-polymorphic-tree',