Add py3.8 support
Change-Id: I3d97ec43f84d00f8403a4ecf355a6d9b7c75d57e
This commit is contained in:
parent
b5aa49e602
commit
2b0ca071f9
@ -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:
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user