Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 47a05b0

Browse files
committedMar 5, 2024··
feat: add support for musllinux_aarch64
Signed-off-by: JP-Ellis <josh@jpellis.me>
1 parent 8895276 commit 47a05b0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎hatch_build.py

+2
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,8 @@ def _pact_lib_url(self, version: str) -> str: # noqa: C901, PLR0912
283283
os = "linux"
284284
if platform.endswith("x86_64"):
285285
machine = "x86_64-musl"
286+
elif platform.endswith("aarch64"):
287+
machine = "aarch64-musl"
286288
else:
287289
raise UnsupportedPlatformError(platform)
288290
return PACT_LIB_URL.format(

0 commit comments

Comments
 (0)
Please sign in to comment.