Add Linux ARM64 standalone release support (#886)

This commit is contained in:
Matthew Bright
2026-07-26 16:27:02 -07:00
committed by GitHub
parent 384338cf31
commit 427cdcd9d4
5 changed files with 213 additions and 11 deletions
+7 -1
View File
@@ -271,7 +271,13 @@ def _release_target() -> str | None:
if os_name is None:
return None
target = f"{os_name}-{arch}"
supported = {"linux-x86_64", "macos-x86_64", "macos-arm64", "windows-x86_64"}
supported = {
"linux-x86_64",
"linux-arm64",
"macos-x86_64",
"macos-arm64",
"windows-x86_64",
}
return target if target in supported else None