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