Skip to content

Commit

Permalink
fix: allow build on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Dec 5, 2024
1 parent c83c68b commit 6a9f1bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
system = platform.system()
current_arch = platform.machine()

print(f"System: {system} ({current_arch})")

IS_EXTENSION_BUILDABLE = system == "Linux" and current_arch in [
"x86_64",
"arm64",
"aarch64",
]

IS_EXTENSION_REQUIRED = (
Expand Down

0 comments on commit 6a9f1bb

Please sign in to comment.