We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58920f6 commit 0fc0d4bCopy full SHA for 0fc0d4b
setup.py
@@ -6,6 +6,7 @@
6
import subprocess
7
import re
8
import sysconfig
9
+import platform
10
import skbuild
11
from skbuild import cmaker
12
@@ -23,6 +24,8 @@ def main():
23
24
25
if sys.version_info[:2] >= (3, 6):
26
minimum_supported_numpy = "1.13.3"
27
+ if sys.version_info[:2] >= (3, 6) and platform.machine() == "aarch64":
28
+ minimum_supported_numpy = "1.19.0"
29
if sys.version_info[:2] >= (3, 7):
30
minimum_supported_numpy = "1.14.5"
31
if sys.version_info[:2] >= (3, 8):
0 commit comments