From 8c7e59ce3f5f5fc35f19123efbad816de50363f0 Mon Sep 17 00:00:00 2001 From: Caihui Date: Wed, 1 Jul 2020 23:34:33 -0700 Subject: [PATCH] Add py38 in tox. In new release, The project is used python38 to replace python37, so drop py37,add py38 in tox. Change-Id: I19dd35b12f2a7764ecf9635a09f9865b589d250a --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 20e5ddc..34411f5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.1.1 -envlist = py36,py37,pep8,pylint,docs +envlist = py36,py38,pep8,pylint,docs skipsdist = True ignore_basepython_conflict = True @@ -41,8 +41,8 @@ commands = {posargs} [testenv:py36] basepython = python3.6 -[testenv:py37] -basepython = python3.7 +[testenv:py38] +basepython = python3.8 [testenv:docs] deps = -r{toxinidir}/doc/requirements.txt