From 8ae2e4c8a1fddc0ae063feae1dde629d353cfbe5 Mon Sep 17 00:00:00 2001 From: Tony Xu Date: Wed, 26 Oct 2016 10:26:27 +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: Ic80a40692726b05f0f9d174f6ba7e7040f30db38 --- setup.cfg | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 0ce97cbd2..0e0dd0a9f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,6 +20,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 99916ec71..573194eaf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ # noted to use py34 you need virtualenv >= 1.11.4 [tox] -envlist = py34,py27,pypy,pep8,docs +envlist = py35,py34,py27,pypy,pep8,docs minversion = 1.6 skipsdist = True