From b152dda04b0af5b8577fbb9cdbcb93309f4363da Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sat, 9 Jul 2016 22:31:01 -0700 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: I14f4f90ca0f0c863f9175934f63c95b9115f9b8c --- setup.cfg | 3 ++- tox.ini | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 861cc840d2..6dff41e704 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,8 @@ 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 = diff --git a/tox.ini b/tox.ini index 3f733d34ed..9762af248e 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