Skip to content
Snippets Groups Projects
Commit cb672dc9 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'allow_aarch64' into 'master'

allow aarch64

See merge request !179
parents a2537592 ddb7e552
No related branches found
No related tags found
1 merge request!179allow aarch64
Pipeline #44661 passed
......@@ -60,6 +60,8 @@ def conda_arch():
if platform.machine().lower() == "x86_64":
r += "-64"
elif platform.machine().lower() == "aarch64":
r += "-aarch64"
else:
raise RuntimeError('Unsupported machine type "%s"' % platform.machine())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment