From e36016977c1607abfb2e6b0684237c6d034a6e92 Mon Sep 17 00:00:00 2001 From: Mathew Odden Date: Thu, 6 Apr 2017 09:04:06 -0500 Subject: [PATCH] Update to tox.ini environment list We officially support python35 now, so add py35 to the default envlist. Also, just clean up the default list by removing py33, py34, and pypy. I used to test by hand on py34 a long time ago, but I don't see much risk in breaking this with python35 gating jobs. I don't know of anyone attempting to run this on pypy and I don't know if anyone has ever tested it either. Change-Id: Ic9a98b2e126c9366cd325d8f47860d556bbb69ee --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 18fa5ed..af16833 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py33,py34,py27,pypy,pep8 +envlist = py35,py27,pep8 skipsdist = True [testenv]