diff --git a/setup.py b/setup.py index d5c5823..0638767 100644 --- a/setup.py +++ b/setup.py @@ -49,10 +49,6 @@ include_package_data=True, install_requires=[ 'Django<1.9', - # 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', @@ -67,7 +63,13 @@ 'dev': ['ipdb', 'ipython'], 'fluentevent': ['django-fluent-contents'], 'postgres': ['psycopg2'], - 'test': ['coverage', 'django-nose', 'nose-progressive', 'django-webtest', 'WebTest'] + 'test': [ + 'coverage', 'django-nose', 'nose-progressive', 'django-webtest', 'WebTest', + # 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', + ] }, setup_requires=['setuptools_scm'], )