From 067c90276a59283028bbcfc43bffbc6fce2dcdf9 Mon Sep 17 00:00:00 2001 From: qinchunhua Date: Tue, 2 Aug 2016 02:24:20 -0400 Subject: [PATCH] Add Python 3.5 venv and classifier 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: I6b74811ef13caa3006a52e331346acc59eaca017 --- setup.cfg | 3 +++ tox.ini | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 3c523ba3..b006de1a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,9 @@ classifier = 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 [files] packages = diff --git a/tox.ini b/tox.ini index 94add150..a454c4d2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py34,py27,pep8,pylint +envlist = py35,py34,py27,pep8,pylint minversion = 1.6 skipsdist = True