Bump version to 0.8.7 (#15173)

This commit is contained in:
Zanie Blue
2025-08-08 14:42:23 -05:00
committed by GitHub
parent d1beb7f640
commit 8a22572338
16 changed files with 70 additions and 33 deletions

View File

@@ -46,9 +46,9 @@ def find_uv_bin() -> str:
if os.path.isfile(path):
return path
locations = "\n".join(f" - {target}" for target in seen)
raise UvNotFound(
f"Could not find the uv binary in any of the following locations:\n"
f"{'\n'.join(f' - {target}' for target in seen)}\n"
f"Could not find the uv binary in any of the following locations:\n{locations}\n"
)