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: I968c8baab6b9f5c1b1b99735e16dc08158f7d8d7
This commit is contained in:
Yatin Kumbhare
2016-07-12 21:12:27 +05:30
parent a3803ad68b
commit db2178964a
2 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,8 @@ classifier =
Operating System :: POSIX :: Linux Operating System :: POSIX :: Linux
Programming Language :: Python Programming Language :: Python
Programming Language :: Python :: 2.7 Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
[files] [files]
packages = packages =

View File

@@ -1,6 +1,6 @@
[tox] [tox]
minversion = 1.6 minversion = 1.6
envlist = docs,py34,py27,pep8,specs envlist = docs,py35,py34,py27,pep8,specs
skipsdist = True skipsdist = True
[testenv] [testenv]
@@ -32,6 +32,10 @@ commands = oslo_debug_helper {posargs}
basepython = python3.4 basepython = python3.4
commands = oslo_debug_helper {posargs} commands = oslo_debug_helper {posargs}
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper {posargs}
[testenv:pep8] [testenv:pep8]
commands = flake8 commands = flake8
doc8 specs doc/source octavia \ doc8 specs doc/source octavia \