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-py36:
nodeset: ubuntu-bionic
- tox-py38
- lodgeit-build-opendev-image
gate:
jobs:
@ -65,6 +66,7 @@
- tox-py27
- tox-py36:
nodeset: ubuntu-bionic
- tox-py38
- lodgeit-upload-opendev-image
promote:
jobs:

View File

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

View File

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