From 346dfa8ef22bfd9050ef5eec32cb37950fc252f9 Mon Sep 17 00:00:00 2001 From: Cai Hui Date: Wed, 5 Jun 2019 03:20:25 -0400 Subject: [PATCH] Add python3.7 unit test job This is a mechanically generated patch to add a unit test job running under Python 3.7. See ML discussion here [1] for context. [1] http://lists.openstack.org/pipermail/openstack-dev/2018-October/135626.html Change-Id: I682d70484e90eceaafeba6b69c83e5dbe1b301e7 --- setup.cfg | 1 + tox.ini | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index ab82b55..8ad7e84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,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 Environment :: OpenStack diff --git a/tox.ini b/tox.ini index 1b93e71..fda40d4 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] @@ -40,12 +40,12 @@ commands = {posargs} [testenv:py27] basepython = python2.7 -[testenv:py35] -basepython = python3.5 - [testenv:py36] basepython = python3.6 +[testenv:py37] +basepython = python3.7 + [testenv:docs] basepython = python3 deps = -r{toxinidir}/doc/requirements.txt