summaryrefslogtreecommitdiff
path: root/tools/openblas_support.py
diff options
context:
space:
mode:
authorXavier Thomas <43476211+xavierohan@users.noreply.github.com>2020-01-27 19:07:46 +0530
committerGitHub <noreply@github.com>2020-01-27 19:07:46 +0530
commit02cbcd79cbd2cfda1da22ff782eae98a97147b41 (patch)
treedffc1d85cd701738d57ac5874c2d6b91a0ef7430 /tools/openblas_support.py
parenta53a70e526d911a08cc5bc62ab5a25b73ebcc4a8 (diff)
downloadnumpy-02cbcd79cbd2cfda1da22ff782eae98a97147b41.tar.gz
Updated openblas_support.py
Diffstat (limited to 'tools/openblas_support.py')
-rw-r--r--tools/openblas_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py
index 103ccf317..c3e963aaa 100644
--- a/tools/openblas_support.py
+++ b/tools/openblas_support.py
@@ -40,7 +40,6 @@ def get_ilp64():
return "64_"
def download_openblas(target, arch, ilp64):
- MAC_VERSION = 'macosx_10_9_x86_64-gf_1becaaa.tar.gz'
fnsuffix = {None: "", "64_": "64_"}[ilp64]
filename = ''
if arch in ('aarch64', 'ppc64le', 's390x'):
@@ -48,6 +47,7 @@ def download_openblas(target, arch, ilp64):
typ = 'tar.gz'
typ = 'tar.gz'
elif arch == 'darwin':
+ MAC_VERSION = 'macosx_10_9_x86_64-gf_1becaaa.tar.gz'
filename = f'{RACKSPACE}/openblas{fnsuffix}-{OPENBLAS_LONG}-{MAC_VERSION}'
typ = 'tar.gz'
elif arch == 'windows':