From ceb3c72ec707ff82e65997434805d039478a5ebc Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Tue, 7 Feb 2017 13:28:28 +0700 Subject: [PATCH] Remove a py34 environment from tox The gating on python 3.4 is restricted to <= Mitaka. This is due to the change from Ubuntu Trusty to Xenial, where only python3.5 is available. There is no need to continue to keep these settings. Change-Id: Id8a9dda9ea25b47afc35e0605f4df2f3f22c5f38 --- tox.ini | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 48b44a894b..793c41ea34 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 2.0 skipsdist = True -envlist = py35,py34,py27,pep8 +envlist = py35,py27,pep8 [testenv] setenv = VIRTUAL_ENV={envdir} @@ -29,10 +29,6 @@ commands = oslo_debug_helper {posargs} basepython = python2.7 commands = oslo_debug_helper {posargs} -[testenv:debug-py34] -basepython = python3.4 -commands = oslo_debug_helper {posargs} - [testenv:debug-py35] basepython = python3.5 commands = oslo_debug_helper {posargs}