diff --git a/crates/uv-python/fetch-download-metadata.py b/crates/uv-python/fetch-download-metadata.py index b21c475db..f12bd012e 100755 --- a/crates/uv-python/fetch-download-metadata.py +++ b/crates/uv-python/fetch-download-metadata.py @@ -835,7 +835,7 @@ def render(downloads: list[PythonDownload]) -> None: VERSIONS_FILE.parent.mkdir(parents=True, exist_ok=True) # Make newlines consistent across platforms - VERSIONS_FILE.write_text(json.dumps(results, indent=2), newline="\n") + VERSIONS_FILE.write_text(json.dumps(results, indent=2) + "\n", newline="\n") async def find() -> None: