From 7a252dce912f5e2683292bc2f42ac1d192eadb4f Mon Sep 17 00:00:00 2001 From: Mila Page Date: Wed, 20 Mar 2024 14:20:55 -0700 Subject: [PATCH] Revert setup.py --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index c72c82ebd..beffa3348 100644 --- a/setup.py +++ b/setup.py @@ -43,13 +43,7 @@ def _plugin_version_trim() -> str: """ attributes = {} exec(VERSION.read_text(), attributes) - print("================") - print("================") - print(attributes["version"]) pattern = r"\+build\d+$" - print(re.sub(pattern, "", attributes["version"])) - print("================") - print("================") return re.sub(pattern, "", attributes["version"])