Add py3.8 support

Change-Id: I3d97ec43f84d00f8403a4ecf355a6d9b7c75d57e
This commit is contained in:
Dmitriy Rabotyagov 2021-02-01 22:12:17 +02:00 committed by Ian Wienand
parent b5aa49e602
commit 2b0ca071f9
3 changed files with 9 additions and 2 deletions

View File

@ -58,6 +58,7 @@
- tox-py27 - tox-py27
- tox-py36: - tox-py36:
nodeset: ubuntu-bionic nodeset: ubuntu-bionic
- tox-py38
- lodgeit-build-opendev-image - lodgeit-build-opendev-image
gate: gate:
jobs: jobs:
@ -65,6 +66,7 @@
- tox-py27 - tox-py27
- tox-py36: - tox-py36:
nodeset: ubuntu-bionic nodeset: ubuntu-bionic
- tox-py38
- lodgeit-upload-opendev-image - lodgeit-upload-opendev-image
promote: promote:
jobs: jobs:

View File

@ -9,7 +9,12 @@
""" """
import re import re
import time import time
from cgi import escape
try:
from html import escape
except ImportError:
from cgi import escape
try: try:
all all
except NameError: except NameError:

View File

@ -1,6 +1,6 @@
[tox] [tox]
minversion = 1.6 minversion = 1.6
envlist = pep8, py27, py36 envlist = pep8, py27, py36, py38
skipsdist = True skipsdist = True
[testenv] [testenv]