From 9f78b6320d66cad993d8f1783932816dfd588428 Mon Sep 17 00:00:00 2001 From: zheng yin Date: Tue, 12 Jul 2016 05:22:03 +0800 Subject: [PATCH] Add Python 3.5 classifier and venv 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: I595320fb8b8e97951b8d445a14eb4f5a311a151f --- setup.cfg | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 89d31ec54..888b985e4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifier = 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 a20951fec..062ca6724 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # py3 first to avoid .testrepository incompatibility -envlist = py34,py27,pypy,pep8 +envlist = py35,py34,py27,pypy,pep8 minversion = 1.6 skipsdist = True