bump py37 to py38 in tox.ini

in 'victoria' cycle, we should test py38 by default.

[1] https://governance.openstack.org/tc/reference/runtimes/victoria.html

Change-Id: Iec7a658061c30f9e445ba27bfab584c93d0355bd
This commit is contained in:
likui 2020-10-14 09:11:34 +08:00
parent 2ebd1a0755
commit a58ef361ac
2 changed files with 4 additions and 3 deletions

View File

@ -20,6 +20,7 @@ classifier=
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: CPython

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py37,pep8,cover envlist = py38,pep8,cover
minversion = 2.5 minversion = 2.5
skipsdist = True skipsdist = True
@ -29,8 +29,8 @@ commands =
{[testenv]commands} {[testenv]commands}
stestr run {posargs} stestr run {posargs}
[testenv:py37] [testenv:py38]
basepython = python3.7 basepython = python3.8
commands = commands =
{[testenv]commands} {[testenv]commands}
stestr run {posargs} stestr run {posargs}