From 2fba753e8d12e81309b5fa2584de112a1b1d9c7d Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Fri, 19 Mar 2021 13:56:39 +0100 Subject: [PATCH] Add Python 3.6 to supported versions This is the version that CentOS/RHEL 8 and Ubuntu Bionic have. I've tested Glean on CentOS 8, and it seems to work well. Change-Id: Ie06a9c11b140728509a69b03366e910702fd0d3d --- .zuul.yaml | 1 + setup.cfg | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.zuul.yaml b/.zuul.yaml index f6e3a36..f3b5a0f 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -2,6 +2,7 @@ templates: - openstack-python-jobs-no-constraints - openstack-python35-jobs-no-constraints + - openstack-python36-jobs-no-constraints check: jobs: - opendev-buildset-registry diff --git a/setup.cfg b/setup.cfg index 726e95b..8caae1c 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.5 + Programming Language :: Python :: 3.6 [entry_points] console_scripts = diff --git a/tox.ini b/tox.ini index b7d5364..304cdce 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py35,py27,pypy,pep8 +envlist = py36,py35,py27,pypy,pep8 skipsdist = True [testenv]