Skip to content

Commit 2f80de7

Browse files
Add platform tag support for LoongArch (#693)
Co-authored-by: Brett Cannon <[email protected]>
1 parent e8f839f commit 2f80de7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packaging/_manylinux.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _have_compatible_abi(executable: str, arch: str) -> bool:
5555
return _is_linux_armhf(executable)
5656
if arch == "i686":
5757
return _is_linux_i686(executable)
58-
return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x"}
58+
return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x", "loongarch64"}
5959

6060

6161
# If glibc ever changes its major version, we need to know what the last

0 commit comments

Comments
 (0)