Removed older version of python added 3.5

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

Change-Id: I7a5c18e5a851f116ab9d42f6118c3f29667d6fa0
This commit is contained in:
qingszhao 2018-09-29 15:52:13 +08:00
parent 20de6b5e66
commit 55c7eac9a0
2 changed files with 5 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 = py27,pep8
envlist = py27,py35,pep8
skipsdist = True
[testenv]
@ -26,12 +26,15 @@ commands =
rm -f .testrepository/times.dbm
[testenv:pep8]
basepython = python3
commands = flake8 {posargs}
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:debug]
basepython = python3
commands = oslo_debug_helper {posargs}
[flake8]