From 3f19aa4682949662b3bad24d5728cbf042957640 Mon Sep 17 00:00:00 2001 From: Conchylicultor Date: Thu, 30 May 2024 15:05:54 +0200 Subject: [PATCH] Log editable packages --- src/compare_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compare_version.py b/src/compare_version.py index edd67f0..43b2901 100644 --- a/src/compare_version.py +++ b/src/compare_version.py @@ -66,7 +66,7 @@ def _is_editable(dist: importlib.metadata.PathDistribution) -> bool: # Here, should check with github action path editable = content.startswith("/") or "import __editable__" in content if editable: - print(content) + print(f'{dist.name} is editable: {content}') return editable