From 3959e21889a12578e4b3393717dfc373f2424f81 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Fri, 29 Nov 2024 12:28:31 -0500 Subject: [PATCH] add stupid manual print debugging --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 99e3647..c4fbf1f 100644 --- a/setup.py +++ b/setup.py @@ -17,10 +17,13 @@ def _get_vrs_submodule_info() -> tuple[str, str, int]: commit = subprocess.check_output( ["git", "rev-parse", "HEAD"], cwd=vrs_path, text=True ).strip() + print("hey i'm debugging here") subprocess.run(["git", "fetch", "--tags"]) + print("hey i'm debugging here") tag = subprocess.check_output( ["git", "describe", "--tags", "--abbrev=0"], cwd=vrs_path, text=True ).strip() + print("hey i'm debugging here") distance = subprocess.check_output( ["git", "rev-list", f"{tag}..HEAD", "--count"], cwd=vrs_path,