From f18f9e2dce6cbc59265d48b221c82a8c2d842bfc Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 15 Jul 2025 21:04:06 +0200 Subject: [PATCH] Core: increment version (#5194) --- Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.py b/Utils.py index d1c1dd5b..9c117109 100644 --- a/Utils.py +++ b/Utils.py @@ -47,7 +47,7 @@ class Version(typing.NamedTuple): return ".".join(str(item) for item in self) -__version__ = "0.6.2" +__version__ = "0.6.3" version_tuple = tuplize_version(__version__) is_linux = sys.platform.startswith("linux")