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
This commit is contained in:
Cai Hui 2018-12-17 03:01:40 -05:00
parent 6af94a5610
commit 1e687a4993
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[tox]
minversion = 2.0
envlist = py27,py35,pep8,pylint,docs
envlist = py27,py35,py36,pep8,pylint,docs
skipsdist = True
[testenv]