diff options
author | Xavier Thomas <43476211+xavierohan@users.noreply.github.com> | 2020-01-27 19:56:08 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 19:56:08 +0530 |
commit | fe50af5c1867b1c2d3031084c4804a3416f405d4 (patch) | |
tree | 9a678125e8b41d4ed3954f49e5bd20873549b6e0 | |
parent | 02cbcd79cbd2cfda1da22ff782eae98a97147b41 (diff) | |
download | numpy-fe50af5c1867b1c2d3031084c4804a3416f405d4.tar.gz |
Update tools/openblas_support.py
Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
-rw-r--r-- | tools/openblas_support.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py index c3e963aaa..301f32b4b 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -43,7 +43,8 @@ def download_openblas(target, arch, ilp64): fnsuffix = {None: "", "64_": "64_"}[ilp64] filename = '' if arch in ('aarch64', 'ppc64le', 's390x'): - filename = f'{RACKSPACE}/openblas{fnsuffix}-{OPENBLAS_LONG}-manylinux2014_{arch}' + suffix = f'manylinux2014_{arch}.tar.gz' + filename = f'{RACKSPACE}/openblas{fnsuffix}-{OPENBLAS_LONG}-{suffix}' typ = 'tar.gz' typ = 'tar.gz' elif arch == 'darwin': |