From e989a2ca5193c931e146990ebba2298835612c29 Mon Sep 17 00:00:00 2001 From: Cai Hui Date: Fri, 24 May 2019 21:53:50 -0400 Subject: [PATCH] Drop the py35 testing, add the py37 testing All the integration testing has been moved to Bionic now[1] and py3.5 is not tested runtime for Train or stable/stein[2]. As per below ML thread, we are good to drop the py35 testing now: http://lists.openstack.org/pipermail/openstack-discuss/2019-April/005097.html [1] http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004647.html [2] https://governance.openstack.org/tc/reference/runtimes/stein.html https://governance.openstack.org/tc/reference/runtimes/train.html Change-Id: I0965666290c8e8f88d61d537ff58bbd1c63eeef6 --- setup.cfg | 1 + tox.ini | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 328b81a..79fb22b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifier = Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 Development Status :: 5 - Production/Stable Natural Language :: English Operating System :: POSIX :: Linux diff --git a/tox.ini b/tox.ini index 30de26c..0106e36 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py27,py36,pep8,pylint,docs +envlist = py27,py36,py37,pep8,pylint,docs skipsdist = True [testenv] @@ -44,12 +44,12 @@ commands = [testenv:py27] basepython = python2.7 -[testenv:py35] -basepython = python3.5 - [testenv:py36] basepython = python3.6 +[testenv:py37] +basepython = python3.7 + [testenv:pep8] basepython = python3 commands = flake8 freezer_dr