From 604360334199eb59521c882063e34de2063a9638 Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Tue, 5 Mar 2024 14:56:32 +1100 Subject: [PATCH] feat: add support for musllinux_aarch64 Signed-off-by: JP-Ellis --- hatch_build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hatch_build.py b/hatch_build.py index 3baec67cb5..5e6489add1 100644 --- a/hatch_build.py +++ b/hatch_build.py @@ -283,6 +283,8 @@ def _pact_lib_url(self, version: str) -> str: # noqa: C901, PLR0912 os = "linux" if platform.endswith("x86_64"): machine = "x86_64-musl" + elif platform.endswith("aarch64"): + machine = "aarch64-musl" else: raise UnsupportedPlatformError(platform) return PACT_LIB_URL.format(