From 7e860919a8b0225ba1adb4e48df3cff76dc66d2b Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Tue, 12 Apr 2022 12:28:03 -0400 Subject: [PATCH] fix: Drop testing for Python 3.6 Change I42660519c1cbe94a4322767b1940e113b0e5a276 missed dropping support for Python 3.6 which is also EOL. This is not noted as a breaking change as the release email that went out for JJB 4.0.0 already addresses that we will be dropping support for Python 3.6 and older so this simply removes the CI testing associated with that statement. Change-Id: Ia146401460c8978d1b53213413bf92d5aef9a3cf Signed-off-by: Thanh Ha --- .zuul.yaml | 1 - setup.cfg | 1 - tox.ini | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index c95e4d691..1521b21ff 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -16,7 +16,6 @@ - project: templates: - docs-on-readthedocs - - openstack-python36-jobs-no-constraints - openstack-python37-jobs-no-constraints - openstack-python38-jobs-no-constraints vars: diff --git a/setup.cfg b/setup.cfg index 8836bdfd3..67be088ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,7 +22,6 @@ classifier = Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 diff --git a/tox.ini b/tox.ini index 095dd4a81..9688584c4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.2 -envlist = linters, docs, docs-linkcheck, py36, py37, py38, cover +envlist = linters, docs, docs-linkcheck, py37, py38, cover skip_missing_interpreters = true # custom vars (no meaning to tox) install_test_deps = pip install -q -r test-requirements.txt