From 73f60c6e619dd3cdf3eb33443cd79f6e7e020c46 Mon Sep 17 00:00:00 2001 From: David Jean Louis Date: Mon, 11 Aug 2014 17:37:22 +0200 Subject: [PATCH] Fixed south dependency, we stick to 0.8.4 for python 3 because south 1.0 is not fully compatible --- tox.ini | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2373002..3e7a1ab 100644 --- a/tox.ini +++ b/tox.ini @@ -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]