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 number of release
|
||||
export const version = '2022.12.1.RC1';
|
||||
export const version = '2022.12.1';
|
||||
|
||||
export type RuntimeInterpreter = PyodideInterface | null;
|
||||
|
||||
|
||||
@@ -220,13 +220,13 @@ class TestBasic(PyScriptTest):
|
||||
"""
|
||||
)
|
||||
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
|
||||
)
|
||||
assert (
|
||||
re.match(
|
||||
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],
|
||||
)
|
||||
is not None
|
||||
|
||||
Reference in New Issue
Block a user