diff options
-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 = [ |