From c30e03dca065e097f4595303740fcd6b814539a8 Mon Sep 17 00:00:00 2001 From: PanFengyun Date: Thu, 14 Jul 2016 21:49:12 +0800 Subject: [PATCH] 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 --- setup.cfg | 3 +++ tox.ini | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index f999b54..800b803 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/tox.ini b/tox.ini index 96face0..a3ba1fa 100644 --- a/tox.ini +++ b/tox.ini @@ -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}