From faba2d3f98f1ff68073e36be8c199b52b55950fd Mon Sep 17 00:00:00 2001 From: Daniel Axtens Date: Tue, 9 Aug 2016 14:55:23 +1000 Subject: [PATCH] tox: Add Python 3.5 Python 3.5 is shipped with Ubuntu 16.04, and it's the new stable release. Add support for this runtime in tox. Note that Django 1.6 and 1.7 don't work with Python 3.5, so these are excluded. Signed-off-by: Daniel Axtens Signed-off-by: Stephen Finucane --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 41af806a..c2edd975 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 = py{27,34}-django{16,17,18,19},py35-django{18,19} skipsdist = True [testenv] -- 2.47.3