summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2020-01-17 18:26:41 +1100
committermattip <matti.picus@gmail.com>2020-01-19 07:25:01 +1100
commit1edb44669f9acddebd92df794ca9731fd92f4e06 (patch)
treebbad4277bb597b1d7fdb3bd39495bfede3e7b2f1
parent18ab0d378bd1fef28703c56a5f3d48c9859b1d2a (diff)
downloadnumpy-1edb44669f9acddebd92df794ca9731fd92f4e06.tar.gz
BLD: use 0.3.8dev build of OpenBLAS
-rw-r--r--.travis.yml2
-rw-r--r--azure-pipelines.yml2
-rw-r--r--shippable.yml2
-rw-r--r--tools/openblas_support.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index ef98d4a27..84fdbb8f7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,7 +29,7 @@ stages:
env:
global:
- - OpenBLAS_version=0.3.7
+ - OpenBLAS_version=0.3.8
- WHEELHOUSE_UPLOADER_USERNAME=travis.numpy
# The following is generated with the command:
# travis encrypt -r numpy/numpy WHEELHOUSE_UPLOADER_SECRET=tH3AP1KeY
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 9a8acc9c1..7bd7a1e1f 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -8,7 +8,7 @@ trigger:
variables:
# OpenBLAS_version should be updated
# to match numpy-wheels repo
- OpenBLAS_version: 0.3.7
+ OpenBLAS_version: 0.3.8
stages:
- stage: InitialTests
diff --git a/shippable.yml b/shippable.yml
index 098bb1c16..bea2a2206 100644
--- a/shippable.yml
+++ b/shippable.yml
@@ -49,7 +49,7 @@ build:
- extra_path=$(printf "%s:" "${extra_directories[@]}")
- export PATH="${extra_path}${PATH}"
# check OpenBLAS version
- - python tools/openblas_support.py --check_version 0.3.7
+ - python tools/openblas_support.py --check_version 0.3.8
# run the test suite
- python runtests.py -n --debug-info --show-build-log -- -rsx --junit-xml=$SHIPPABLE_REPO_DIR/shippable/testresults/tests.xml -n 2 --durations=10
diff --git a/tools/openblas_support.py b/tools/openblas_support.py
index 95f697a80..3708033d3 100644
--- a/tools/openblas_support.py
+++ b/tools/openblas_support.py
@@ -15,8 +15,8 @@ from tempfile import mkstemp, gettempdir
import zipfile
import tarfile
-OPENBLAS_V = 'v0.3.7'
-OPENBLAS_LONG = 'v0.3.7'
+OPENBLAS_V = 'v0.3.8'
+OPENBLAS_LONG = 'v0.3.5-605-gc815b8fb' # the 0.3.5 is misleading
BASE_LOC = ''
RACKSPACE = 'https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com'
ARCHITECTURES = ['', 'windows', 'darwin', 'aarch64', 'x86', 'ppc64le', 's390x']