From a057248fe1d2090591ef0e534a7d02746f226ba1 Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Tue, 7 Feb 2017 11:47:48 +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: Icfef7cbcb79d3074164b5812184f8b2a27d005d0 --- tox.ini | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 6dfe1b0a9..acbeb1c59 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py35,py34,py27,pep8,functional +envlist = py35,py27,pep8,functional skipsdist = True [testenv] @@ -49,10 +49,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}