Removed older version of python added 3.5

Remove the support of python3.4, because
in Ubuntu Xenial only (python3.4 is
restricted to <= Mitaka).

In setup.cfg file the python 3.5 is added
In tox.ini the python 3.5 is added

Change-Id: I32cb3c55ce1303ee20738a35724c2e33857e57f0
Closes-Bug:  #1801855
This commit is contained in:
qingszhao 2018-09-29 21:08:17 +08:00 committed by Ghanshyam Mann
parent f7066bea50
commit 294c50aed3
2 changed files with 8 additions and 3 deletions

View File

@ -16,8 +16,7 @@ classifier =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
[files]
packages =

View File

@ -1,6 +1,6 @@
[tox]
minversion = 2.0
envlist = py34,py27,pypy,pep8
envlist = py35,py27,pypy,pep8
skipsdist = True
[testenv]
@ -15,19 +15,23 @@ deps = -r{toxinidir}/test-requirements.txt
commands = stestr --test-path ./tempest_stress/tests run {posargs}
[testenv:stress]
basepython = python3
envdir = .tox/tempest_stress
sitepackages = False
commands =
run-tempest-stress {posargs}
[testenv:pep8]
basepython = python3
sitepackages = False
commands = flake8 {posargs}
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:cover]
basepython = python3
setenv =
VIRTUAL_ENV={envdir}
PYTHON=coverage run --source tempest_stress --parallel-mode
@ -38,9 +42,11 @@ commands =
coverage xml -o cover/coverage.xml
[testenv:docs]
basepython = python3
commands = python setup.py build_sphinx
[testenv:debug]
basepython = python3
commands = oslo_debug_helper {posargs}
[flake8]