Add Python 3.5 classifier and venv

Now that there is a passing gate job, we can claim support for
Python 3.5 in the classifier. This patch also adds the convenience
py35 venv.

Change-Id: I15a761c0b6d5769b2dba9f521ef96cf43c99e552
This commit is contained in:
PanFengyun 2016-07-14 21:49:12 +08:00
parent 61aa2335a1
commit 0f81f39f38
2 changed files with 8 additions and 1 deletions

View File

@ -7,6 +7,9 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators

View File

@ -1,5 +1,5 @@
[tox]
envlist = py34,py27,pep8
envlist = py35,py34,py27,pep8
minversion = 1.6
skipsdist = True
@ -26,6 +26,10 @@ commands = oslo_debug_helper {posargs}
basepython = python3.4
commands = oslo_debug_helper {posargs}
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper {posargs}
[testenv:pep8]
commands =
flake8 {posargs}