From 595b3177017098b442a074e0138799a90310940e Mon Sep 17 00:00:00 2001 From: akhiljain23 Date: Thu, 9 May 2019 12:37:28 +0530 Subject: [PATCH] Switch python3 versions of test jobs to match Train PTI In Train, we will use python 3.6 and 3.7 for python3 runtime in our gate jobs [1]. This commit also adds python 3.7. [1] https://governance.openstack.org/tc/reference/runtimes/train.html Change-Id: Iacb4a7c9bd1bb2d83dbbb8a7ddd6a7c7f106c1fa --- .zuul.yaml | 3 +-- setup.cfg | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index ebcc641..7f1865a 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -3,8 +3,7 @@ - check-requirements - openstack-lower-constraints-jobs - openstack-python-jobs - - openstack-python36-jobs - - openstack-python37-jobs + - openstack-python3-train-jobs - release-notes-jobs-python3 - openstackclient-plugin-jobs - publish-openstack-docs-pti diff --git a/setup.cfg b/setup.cfg index 4358d86..4786e57 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,6 +17,7 @@ classifier = Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 [files] packages = diff --git a/tox.ini b/tox.ini index 91429bc..9b05821 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py36,py27,pep8 +envlist = py37,py36,py27,pep8 skipsdist = True [testenv]