From 3cf08ef7628679e35afeed3efaf0e649344b60e5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 21 Apr 2026 21:42:16 +0000 Subject: [PATCH 1/3] Auto-updated version from 1.0.6 to 1.0.7 --- _version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_version.py b/_version.py index d163f47..8eb8a7b 100644 --- a/_version.py +++ b/_version.py @@ -1 +1 @@ -__version__ = '1.0.6' \ No newline at end of file +__version__ = '1.0.7' \ No newline at end of file From 5e4506b9fd87d4f496e9d82630efc93b5279d00d Mon Sep 17 00:00:00 2001 From: Emaniacinator Date: Tue, 21 Apr 2026 16:53:39 -0600 Subject: [PATCH 2/3] Fixed the encoding errors --- src/pyscripttestutils/PyScriptTestRunner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pyscripttestutils/PyScriptTestRunner.py b/src/pyscripttestutils/PyScriptTestRunner.py index 23d6ec3..c14e0f1 100644 --- a/src/pyscripttestutils/PyScriptTestRunner.py +++ b/src/pyscripttestutils/PyScriptTestRunner.py @@ -78,6 +78,7 @@ def list_deserializer(d: Any) -> Any: except: pass try: return deserializer(d) except: return d + self.deserializer = list_deserializer self._by_py: Dict[str, RegisteredMethod] = {} @@ -258,6 +259,7 @@ def _call_typescript_function( capture_output=True, text=True, cwd=str(self.package_root), + encoding='utf-8' ) if result.stderr: From cdf9a7fd2979282da3a7cfa63967815727b2061d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 22 Apr 2026 19:07:21 +0000 Subject: [PATCH 3/3] Auto-updated version from 1.0.7 to 1.0.8 --- _version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_version.py b/_version.py index 8eb8a7b..5e2a317 100644 --- a/_version.py +++ b/_version.py @@ -1 +1 @@ -__version__ = '1.0.7' \ No newline at end of file +__version__ = '1.0.8' \ No newline at end of file