From 4ede02f2e720726f94c367b27ce317b8fecb5a5c Mon Sep 17 00:00:00 2001 From: Johan Herland Date: Thu, 19 Sep 2024 13:10:52 +0200 Subject: [PATCH] Try to fix/workaround CI failure --- fawltydeps/packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fawltydeps/packages.py b/fawltydeps/packages.py index 3d466b1e..11c6b1e2 100644 --- a/fawltydeps/packages.py +++ b/fawltydeps/packages.py @@ -346,7 +346,7 @@ def debug_print(msg: str): if found: return - elif (path / "bin/python").is_file(): # Assume POSIX + elif (path / "bin/python").is_file() or (path / "bin/python").is_symlink(): # Assume POSIX debug_print(" - on posix, found bin/python") for _site_packages in path.glob("lib/python?.*/site-packages"): if _site_packages.is_dir():