diff options
| -rw-r--r-- | tools/openblas_support.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py index 7cc6f8621..c89cb9284 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -13,8 +13,9 @@ from tempfile import mkstemp, gettempdir from urllib.request import urlopen, Request from urllib.error import HTTPError -OPENBLAS_V = '0.3.19' -OPENBLAS_LONG = 'v0.3.19' +# 0.3.19 fails AVX512_SKX tests, issue 20654, comments in PR 20660 +OPENBLAS_V = '0.3.19.dev' +OPENBLAS_LONG = 'v0.3.19-22-g5188aede' BASE_LOC = 'https://anaconda.org/multibuild-wheels-staging/openblas-libs' BASEURL = f'{BASE_LOC}/{OPENBLAS_LONG}/download' SUPPORTED_PLATFORMS = [ |
