From e8a78961a6e3c65c3744d5bb4c6388b11a597679 Mon Sep 17 00:00:00 2001 From: Tom Barron Date: Thu, 4 Oct 2018 09:24:18 -0400 Subject: [PATCH] change tox envlist from 3.5 to 3 base python version is 3, not 3.5 and python 3.5 is not installed in some current distros so running 'tox' locally fails. Change-Id: Ie2449a433e07f4cafb55fe1db247ba9f854cef97 (cherry picked from commit e62f1f4f9c6077640b8b016057f780cd02bf040a) (cherry picked from commit 4d7251d64fd1e65d10d0ac4df12c118b2465199e) --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 5a620dc4ee..4e6d7a12d8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 2.0 skipsdist = True -envlist = py35,py27,pep8 +envlist = py3,py27,pep8 [testenv] setenv = VIRTUAL_ENV={envdir} @@ -32,8 +32,8 @@ commands = oslo_debug_helper {posargs} basepython = python2.7 commands = oslo_debug_helper {posargs} -[testenv:debug-py35] -basepython = python3.5 +[testenv:debug-py3] +basepython = python3 commands = oslo_debug_helper {posargs} [testenv:pep8]