mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
@@ -6,7 +6,7 @@ const logger = getLogger('pyscript/runtime');
|
|||||||
|
|
||||||
// VERSION
|
// VERSION
|
||||||
// Version number of release
|
// Version number of release
|
||||||
export const version = '2022.12.1.RC1';
|
export const version = '2022.12.1';
|
||||||
|
|
||||||
export type RuntimeInterpreter = PyodideInterface | null;
|
export type RuntimeInterpreter = PyodideInterface | null;
|
||||||
|
|
||||||
|
|||||||
@@ -220,13 +220,13 @@ class TestBasic(PyScriptTest):
|
|||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
assert (
|
assert (
|
||||||
re.match(r"\d{4}\.\d{2}\.\d+\.[a-zA-Z0-9]+", self.console.log.lines[-2])
|
re.match(r"\d{4}\.\d{2}\.\d+(\.[a-zA-Z0-9]+)?", self.console.log.lines[-2])
|
||||||
is not None
|
is not None
|
||||||
)
|
)
|
||||||
assert (
|
assert (
|
||||||
re.match(
|
re.match(
|
||||||
r"version_info\(year=\d{4}, month=\d{2}, "
|
r"version_info\(year=\d{4}, month=\d{2}, "
|
||||||
r"minor=\d+, releaselevel='[a-zA-Z0-9]+'\)",
|
r"minor=\d+, releaselevel='(\.[a-zA-Z0-9]+)?'\)",
|
||||||
self.console.log.lines[-1],
|
self.console.log.lines[-1],
|
||||||
)
|
)
|
||||||
is not None
|
is not None
|
||||||
|
|||||||
Reference in New Issue
Block a user