From e526cb1ae3c8f58f1bb7c91e8adc4d965f247cc7 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 14 Dec 2017 22:50:13 +0100 Subject: [PATCH] Don't run Python 2.6 in tox by default Python 2.6 seems to be harder and harder to run in tox if setuptools is not properly configured for it. It's still possible to run it and it still runs on travis. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6de6cc1e..7b0a537d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py33, py34, py35, py36 +envlist = py27, py33, py34, py35, py36 [testenv] deps = pytest>=2.3.5, < 3.3