From 1e687a499363dd912c69e2628a6ccc523c74f39c Mon Sep 17 00:00:00 2001 From: Cai Hui Date: Mon, 17 Dec 2018 03:01:40 -0500 Subject: [PATCH] Add py36 for developers 1.Add Python 3.6 classifier to setup.cfg 2.We already run python3.6 unit tests in CI. Add the py36 environment to the tox file so that developers with python3.6 Change-Id: I779236a8625a47064ba34e1b0cb865673a5d124f --- setup.cfg | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index d1135b2..6df73e1 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.5 + Programming Language :: Python :: 3.6 Development Status :: 5 - Production/Stable Natural Language :: English Operating System :: POSIX :: Linux diff --git a/tox.ini b/tox.ini index 9e1eb4b..b72d24e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py27,py35,pep8,pylint,docs +envlist = py27,py35,py36,pep8,pylint,docs skipsdist = True [testenv]