Drop py2 testing and metadata

This drops testing of py2 environments and removes it from the package
metadata.

Story: #2003229
Task: #23646

Change-Id: Ieb6ed753705aa5f35e58ec4f3796b4ad9e5e33c3
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2019-12-18 07:33:46 -06:00
parent 9e3b190ad2
commit e65f22678e
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
4 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -8,6 +8,7 @@ results
# Packages
*.egg
*.eggs
*.egg-info
dist
build

View File

@ -1,5 +1,4 @@
- project:
templates:
- openstack-python-jobs-no-constraints
- openstack-python37-jobs-no-constraints
- publish-openstack-docs-pti

View File

@ -13,8 +13,6 @@ 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.7

View File

@ -1,10 +1,14 @@
[tox]
minversion = 1.6
envlist = py27,py35,pep8,docs
minversion = 3.1.0
envlist = py3,pep8,docs
skipsdist = True
# this allows tox to infer the base python from the environment name
# and override any basepython configured in this file
ignore_basepython_conflict=true
[testenv]
usedevelop = True
basepython = python3
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
@ -13,7 +17,6 @@ deps = -r{toxinidir}/requirements.txt
commands = stestr run --slowest {posargs}
[testenv:docs]
basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html