[ussuri][goal] Drop python 2.7 support and testing

OpenStack is dropping the py2.7 support in ussuri cycle.

openstack-health is ready with python 3 and ok to drop the
python 2.7 support.

Complete discussion & schedule can be found in
- http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html
- https://etherpad.openstack.org/p/drop-python2-support

Ussuri Communtiy-wide goal:
https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html

Change-Id: Iaaef4a66fec148e882e3a6a984b07a80c7fb1285
This commit is contained in:
Ghanshyam Mann 2020-02-03 12:58:28 -06:00
parent a88c4fd073
commit b15f68e52d
5 changed files with 15 additions and 14 deletions

View File

@ -1,6 +1,6 @@
- project:
templates:
- openstack-python-jobs
- horizon-nodejs10-jobs
- openstack-python3-train-jobs
- openstack-python35-jobs
- openstack-python3-ussuri-jobs
- build-openstack-docs-pti

View File

@ -3,5 +3,4 @@
# process, which may cause wedges in the gate later.
openstackdocstheme>=1.18.1 # Apache-2.0
reno>=2.5.0 # Apache-2.0
sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
sphinx!=1.6.6,!=1.6.7,!=2.1.0,>=1.6.2;python_version>='3.4' # BSD
sphinx!=1.6.6,!=1.6.7,!=2.1.0,>=1.6.2 # BSD

View File

@ -0,0 +1,6 @@
---
upgrade:
- |
Python 2.7 support has been dropped. Last release of openstack-health
to support py2.7 is OpenStack Train. The minimum version of Python now
supported by openstack-health is Python 3.5.

View File

@ -6,6 +6,7 @@ description-file =
author = OpenStack
author-email = openstack-discuss@lists.openstack.org
home-page = https://opendev.org/openstack/openstack-health/
python-requires = >=3.5
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
@ -13,9 +14,8 @@ classifier =
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7

12
tox.ini
View File

@ -1,9 +1,11 @@
[tox]
envlist = py27,py36,py37,pep8,npm-test,npm-lint
minversion = 2.0
envlist = py36,py37,pep8,npm-test,npm-lint
minversion = 3.1.1
skipsdist = True
ignore_basepython_conflict = True
[testenv]
basepython = python3
setenv = VIRTUAL_ENV={envdir}
usedevelop = True
install_command = pip install -U {opts} {packages}
@ -15,11 +17,9 @@ commands =
stestr run {posargs}
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:docs]
basepython = python3
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/doc/requirements.txt
@ -29,12 +29,10 @@ commands =
whitelist_externals = rm
[testenv:pep8]
basepython = python3
commands =
flake8 {toxinidir}/openstack_health {posargs}
[testenv:cover]
basepython = python3
setenv =
{[testenv]setenv}
PYTHON = coverage run --source openstack_health --parallel-mode
@ -54,9 +52,7 @@ show-source = True
exclude = .git,.venv,.tox,dist,doc,openstack,*egg
[testenv:npm-test]
basepython = python3
commands = npm test
[testenv:npm-lint]
basepython = python3
commands = npm run lint --silent