summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-10-26 10:59:54 -0600
committerGitHub <noreply@github.com>2020-10-26 10:59:54 -0600
commitbffc8b422d7741ae47d0c5604bda475d3c92aad6 (patch)
treebfe0c5631fdb562494cd087d3da37e7ddf3d8511
parent2dcbc560320cb70c2664ed442b9083f80b23840b (diff)
parent594e66d1e5a2cb79b974984864138ff38e9b8c2d (diff)
downloadnumpy-bffc8b422d7741ae47d0c5604bda475d3c92aad6.tar.gz
Merge pull request #17641 from mattip/openblas-v0.3.12
MAINT, BLD: update to OpenBLAS v0.3.12
-rw-r--r--tools/openblas_support.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py
index 46803742c..3d966a8f6 100644
--- a/tools/openblas_support.py
+++ b/tools/openblas_support.py
@@ -12,9 +12,9 @@ from tempfile import mkstemp, gettempdir
from urllib.request import urlopen, Request
from urllib.error import HTTPError
-OPENBLAS_V = '0.3.10'
+OPENBLAS_V = '0.3.12'
# Temporary build of OpenBLAS to test a fix for dynamic detection of CPU
-OPENBLAS_LONG = 'v0.3.9-452-g349b722d'
+OPENBLAS_LONG = 'v0.3.12'
BASE_LOC = 'https://anaconda.org/multibuild-wheels-staging/openblas-libs'
BASEURL = f'{BASE_LOC}/{OPENBLAS_LONG}/download'
ARCHITECTURES = ['', 'windows', 'darwin', 'aarch64', 'x86_64',
@@ -143,9 +143,9 @@ def download_openblas(target, arch, ilp64, is_32bit):
typ = 'tar.gz'
elif arch == 'windows':
if is_32bit:
- suffix = 'win32-gcc_7_1_0.zip'
+ suffix = 'win32-gcc_8_1_0.zip'
else:
- suffix = 'win_amd64-gcc_7_1_0.zip'
+ suffix = 'win_amd64-gcc_8_1_0.zip'
filename = f'{BASEURL}/openblas{fnsuffix}-{OPENBLAS_LONG}-{suffix}'
typ = 'zip'
if not filename: