From 4ad3e1b81fbaa4cdbcecfba10b2c02347934d6fd Mon Sep 17 00:00:00 2001 From: Ghanshyam Date: Thu, 23 Jan 2020 11:27:20 -0600 Subject: [PATCH] [ussuri][goal] Drop python 2.7 support and testing OpenStack is dropping the py2.7 support in ussuri cycle. murano-tempest-plugin 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: I4abb7e97583103ce17e7101cb9dfb824eea397a0 --- releasenotes/notes/drop-py-2-7-4bea36f66f36d65c.yaml | 6 ++++++ setup.cfg | 2 -- test-requirements.txt | 3 +-- tox.ini | 10 +++------- 4 files changed, 10 insertions(+), 11 deletions(-) create mode 100644 releasenotes/notes/drop-py-2-7-4bea36f66f36d65c.yaml diff --git a/releasenotes/notes/drop-py-2-7-4bea36f66f36d65c.yaml b/releasenotes/notes/drop-py-2-7-4bea36f66f36d65c.yaml new file mode 100644 index 0000000..f0322ae --- /dev/null +++ b/releasenotes/notes/drop-py-2-7-4bea36f66f36d65c.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + Python 2.7 support has been dropped. Last release of murano-tempest-plugin + to support py2.7 is OpenStack Train. The minimum version of Python now + supported by murano-tempest-plugin is Python 3.5. diff --git a/setup.cfg b/setup.cfg index 00f4130..71ed93a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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.5 Programming Language :: Python :: 3.6 diff --git a/test-requirements.txt b/test-requirements.txt index 83f9c07..5a879f9 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -6,8 +6,7 @@ hacking<0.13,>=0.12.0 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0 python-subunit>=1.0.0 # Apache-2.0/BSD -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,>=1.6.2;python_version>='3.4' # BSD +sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD oslotest>=3.2.0 # Apache-2.0 testrepository>=0.0.18 # Apache-2.0/BSD testtools>=2.2.0 # MIT diff --git a/tox.ini b/tox.ini index 558d1fd..eca57a7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,11 @@ [tox] -minversion = 2.0 +minversion = 3.1.1 envlist = py35,py27,pypy,pep8 skipsdist = True +ignore_basepython_conflict = True [testenv] +basepython = python3 usedevelop = True install_command = pip install {opts} {packages} setenv = @@ -14,28 +16,22 @@ deps = -r{toxinidir}/test-requirements.txt commands = python setup.py test --slowest --testr-args='{posargs}' [testenv:pep8] -basepython = python3 commands = flake8 {posargs} [testenv:venv] -basepython = python3 commands = {posargs} [testenv:cover] -basepython = python3 commands = python setup.py test --coverage --testr-args='{posargs}' [testenv:docs] -basepython = python3 commands = python setup.py build_sphinx [testenv:releasenotes] -basepython = python3 commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html [testenv:debug] -basepython = python3 commands = oslo_debug_helper {posargs} [flake8]