Fixed south dependency, we stick to 0.8.4 for python 3 because south 1.0 is not fully compatible

This commit is contained in:
David Jean Louis 2014-08-11 17:37:22 +02:00
parent fab0706ba4
commit 73f60c6e61
1 changed files with 9 additions and 1 deletions

10
tox.ini
View File

@ -25,10 +25,18 @@ deps =
south
django==1.6
[testenv:py27-dj17]
basepython = python2.7
deps =
south
django==1.7rc2
;south 1.0 is not python3 compatible, 0.8.4 was:
;http://stackoverflow.com/questions/24529618/why-does-django-south-1-0-use-iteritems
[testenv:py33-dj16]
basepython = python3.3
deps =
south
south==0.8.4
django==1.6
[testenv]