Update python testing as per zed cycle testing runtime
In Zed cycle, we have dropped the python 3.6/3.7[1] testing and its support. Moving the py36 job to py38 based but to run on ubuntu focal as c8s does not seems to have py38. Also updating the python classifier also to reflect the same. [1] https://governance.openstack.org/tc/reference/runtimes/zed.html Change-Id: Ic26a360d2bb09fa6622d1acaa5021c5afbc70240
This commit is contained in:
parent
d60630c3e1
commit
2c7d463f37
16
.zuul.yaml
16
.zuul.yaml
@ -21,13 +21,13 @@
|
|||||||
- ^cinderclient/tests/unit/.*$
|
- ^cinderclient/tests/unit/.*$
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: python-cinderclient-functional-py36
|
name: python-cinderclient-functional-py38
|
||||||
parent: python-cinderclient-functional-base
|
parent: python-cinderclient-functional-base
|
||||||
# need to specify a platform that has python 3.6 available
|
# need to specify a platform that has python 3.8 available
|
||||||
nodeset: devstack-single-node-centos-8-stream
|
nodeset: openstack-single-node-focal
|
||||||
vars:
|
vars:
|
||||||
python_version: 3.6
|
python_version: 3.8
|
||||||
tox_envlist: functional-py36
|
tox_envlist: functional-py38
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: python-cinderclient-functional-py39
|
name: python-cinderclient-functional-py39
|
||||||
@ -42,16 +42,16 @@
|
|||||||
- check-requirements
|
- check-requirements
|
||||||
- lib-forward-testing-python3
|
- lib-forward-testing-python3
|
||||||
- openstack-cover-jobs
|
- openstack-cover-jobs
|
||||||
- openstack-python3-yoga-jobs
|
- openstack-python3-zed-jobs
|
||||||
- publish-openstack-docs-pti
|
- publish-openstack-docs-pti
|
||||||
- release-notes-jobs-python3
|
- release-notes-jobs-python3
|
||||||
check:
|
check:
|
||||||
jobs:
|
jobs:
|
||||||
- python-cinderclient-functional-py36
|
- python-cinderclient-functional-py38
|
||||||
- python-cinderclient-functional-py39
|
- python-cinderclient-functional-py39
|
||||||
- openstack-tox-pylint:
|
- openstack-tox-pylint:
|
||||||
voting: false
|
voting: false
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- python-cinderclient-functional-py36
|
- python-cinderclient-functional-py38
|
||||||
- python-cinderclient-functional-py39
|
- python-cinderclient-functional-py39
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
Python 3.6 & 3.7 support has been dropped. The minimum version of Python now
|
||||||
|
supported is Python 3.8.
|
||||||
|
|
@ -6,7 +6,7 @@ description_file =
|
|||||||
author = OpenStack
|
author = OpenStack
|
||||||
author_email = openstack-discuss@lists.openstack.org
|
author_email = openstack-discuss@lists.openstack.org
|
||||||
home_page = https://docs.openstack.org/python-cinderclient/latest/
|
home_page = https://docs.openstack.org/python-cinderclient/latest/
|
||||||
python_requires = >=3.6
|
python_requires = >=3.8
|
||||||
classifier =
|
classifier =
|
||||||
Development Status :: 5 - Production/Stable
|
Development Status :: 5 - Production/Stable
|
||||||
Environment :: Console
|
Environment :: Console
|
||||||
@ -18,8 +18,6 @@ classifier =
|
|||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3 :: Only
|
Programming Language :: Python :: 3 :: Only
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
|
|
||||||
|
2
tox.ini
2
tox.ini
@ -98,7 +98,7 @@ setenv =
|
|||||||
# TLS (https) server certificate.
|
# TLS (https) server certificate.
|
||||||
passenv = OS_*
|
passenv = OS_*
|
||||||
|
|
||||||
[testenv:functional-py36]
|
[testenv:functional-py38]
|
||||||
deps = {[testenv:functional]deps}
|
deps = {[testenv:functional]deps}
|
||||||
setenv = {[testenv:functional]setenv}
|
setenv = {[testenv:functional]setenv}
|
||||||
passenv = {[testenv:functional]passenv}
|
passenv = {[testenv:functional]passenv}
|
||||||
|
Loading…
Reference in New Issue
Block a user