summaryrefslogtreecommitdiff
path: root/tools/openblas_support.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2020-10-26 09:11:40 +0200
committermattip <matti.picus@gmail.com>2020-10-26 09:11:40 +0200
commit594e66d1e5a2cb79b974984864138ff38e9b8c2d (patch)
treebdec882c3f4b9d9473b345b27aea35d48b9561e5 /tools/openblas_support.py
parentfcba5a6c901717110b9767b418df410d7c8c6e73 (diff)
downloadnumpy-594e66d1e5a2cb79b974984864138ff38e9b8c2d.tar.gz
MAINT, BLD: update to OpenBLAS v0.3.12
Diffstat (limited to 'tools/openblas_support.py')
-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: