Merge "Mark support for py38"

This commit is contained in:
Zuul 2020-11-16 05:47:04 +00:00 committed by Gerrit Code Review
commit c32963fdea
3 changed files with 3 additions and 2 deletions

View File

@ -311,7 +311,7 @@ class RpmHelper(object):
Arguments:
pkg -- A package name
"""
cmd = "rpm -q --queryformat '%{VERSION}-%{RELEASE}' %s" % pkg
cmd = "rpm -q --queryformat '%%{VERSION}-%%{RELEASE}' %s" % pkg
command = CommandRunner(cmd).run()
return command.stdout

View File

@ -17,6 +17,7 @@ classifier =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[files]
packages =

View File

@ -1,5 +1,5 @@
[tox]
envlist = py37,pep8
envlist = py36,py37,py38,pep8
ignore_basepython_conflict = true
[testenv]