Commit 17a68906 by Jaakko Luttinen

Fix South requirement to >=0.8.4

parent 67f7ae9c
......@@ -33,11 +33,11 @@ try:
except ImportError:
# No django so assuming that a new one will get installed...
# TODO/FIXME: Remove the South req line here when Django>=1.7 is accepted
requirements.append("South>=0.8,!=0.8.3")
requirements.append("South>=0.8.4")
requirements.append("sorl-thumbnail>=11.12.1b")
else:
if DJANGO_VERSION < (1, 7):
requirements.append("South>=0.8,!=0.8.3")
requirements.append("South>=0.8.4")
if DJANGO_VERSION < (1, 5):
# For Django 1.4, use sorl-thumbnail<11.12.1:
# https://github.com/mariocesar/sorl-thumbnail/issues/255
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment