diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-07-16 06:03:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 06:03:56 -0600 |
commit | 676a619f2ede19db5f8c8d42f7221a6b10362015 (patch) | |
tree | f41080b872365efa0a9a8a9cae2f6d730dec2eb5 | |
parent | 785d1eb24ae8690b6b7389f6badbc91f949552a4 (diff) | |
parent | b5da89a003114134fd75bf57ea47e9bfece69cd8 (diff) | |
download | numpy-676a619f2ede19db5f8c8d42f7221a6b10362015.tar.gz |
Merge pull request #19492 from mattip/openblas-v0.3.17
BUILD: update OpenBLAS to v0.3.17
-rw-r--r-- | doc/release/upcoming_changes/19462.change.rst | 3 | ||||
-rw-r--r-- | tools/openblas_support.py | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/release/upcoming_changes/19462.change.rst b/doc/release/upcoming_changes/19462.change.rst new file mode 100644 index 000000000..8fbadb394 --- /dev/null +++ b/doc/release/upcoming_changes/19462.change.rst @@ -0,0 +1,3 @@ +OpenBLAS v0.3.17 +---------------- +Update the OpenBLAS used in testing and in wheels to v0.3.17 diff --git a/tools/openblas_support.py b/tools/openblas_support.py index d8389e854..9ab964e6f 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -13,8 +13,8 @@ from tempfile import mkstemp, gettempdir from urllib.request import urlopen, Request from urllib.error import HTTPError -OPENBLAS_V = '0.3.16' -OPENBLAS_LONG = 'v0.3.16' +OPENBLAS_V = '0.3.17' +OPENBLAS_LONG = 'v0.3.17' BASE_LOC = 'https://anaconda.org/multibuild-wheels-staging/openblas-libs' BASEURL = f'{BASE_LOC}/{OPENBLAS_LONG}/download' SUPPORTED_PLATFORMS = [ |