Python 3.4 is now out of date, so bump up to 3.5. This is what is shipped with Ubuntu 16.04, and it's the new stable release. (Indeed, Ubuntu 16.04 doesn't provide Python 3.4!)
Django 1.7 doesn't work with 3.5. If you're an old Django, you're probably better off on 2.7 than a random old 3.x, so let's just test against 2.7 for those. Signed-off-by: Daniel Axtens <[email protected]> --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 37e6939157f4..9a113ccd60f9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py{27,34}-django{16,17,18,19} +envlist = py27-django{16,17,18,19},py35-django{18,19} skipsdist = True [testenv] -- 2.7.4 _______________________________________________ Patchwork mailing list [email protected] https://lists.ozlabs.org/listinfo/patchwork
