From acbbc79ba3bc1637c537dcadda6a425fc37d50b8 Mon Sep 17 00:00:00 2001 From: Masayuki Igawa Date: Wed, 17 Apr 2019 15:55:03 +0900 Subject: [PATCH] Update envlist and classifier This commit updates envlist in tox.ini and adds Python3.7 in classifier. We should have py37 instead of pypy. Change-Id: I2f7a6b7eb8099cfd34f0fe84bb01f23c115c9dda --- setup.cfg | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 2cb075c..2d90586 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,6 +17,7 @@ classifier = Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 [files] packages = diff --git a/tox.ini b/tox.ini index 5812488..d746b62 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py{36,27,py},pep8,pip-check-reqs +envlist = py{37,36,27},pep8,pip-check-reqs skipsdist = True [testenv]