From feb62b4af240d19e48550f28a1a67ab6770e6307 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 16 Apr 2024 02:53:12 +0200 Subject: [PATCH] Core: increment version (#3144) --- Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.py b/Utils.py index 10e6e504..6d446265 100644 --- a/Utils.py +++ b/Utils.py @@ -46,7 +46,7 @@ class Version(typing.NamedTuple): return ".".join(str(item) for item in self) -__version__ = "0.4.5" +__version__ = "0.4.6" version_tuple = tuplize_version(__version__) is_linux = sys.platform.startswith("linux")