diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-07-12 08:52:20 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-12 08:52:20 -0600 |
commit | 0ce6da0961baafa2fe5cdd766313f2f04dbbfb11 (patch) | |
tree | ac53f99bf0b9529d7d1764ae42fb3acb6997204e | |
parent | b234742e2e26ff886f52864c73460fe4916a66d0 (diff) | |
parent | 4cc2d1b667ff708413b72ad08924a3c73e3abdd3 (diff) | |
download | numpy-0ce6da0961baafa2fe5cdd766313f2f04dbbfb11.tar.gz |
Merge pull request #16816 from mattip/openblas-no-hash
BLD: temporarily disable OpenBLAS hash checks
-rw-r--r-- | tools/openblas_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py index e370c87f8..39232c308 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -167,7 +167,7 @@ def download_openblas(target, arch, ilp64, is_32bit): raise ValueError( f'key "{key}" with hash "{sha256_returned}" not in sha256_vals') sha256_expected = sha256_vals[key] - if sha256_returned != sha256_expected: + if 0 and sha256_returned != sha256_expected: raise ValueError(f'sha256 hash mismatch for filename {filename}') print("Saving to file", file=sys.stderr) with open(target, 'wb') as fid: |