diff options
author | mattip <matti.picus@gmail.com> | 2021-02-28 18:06:06 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2021-02-28 18:06:06 +0200 |
commit | 6e4e8b789e8d0fe4591d80a578ff21b388b1956d (patch) | |
tree | 6efb4a6e9e3963bfab7d516f296ae821d18d2649 | |
parent | 592b71c8cd10ef3cf9bccebb6c3ed0198f105484 (diff) | |
download | numpy-6e4e8b789e8d0fe4591d80a578ff21b388b1956d.tar.gz |
BLD: add _2_24 to valid manylinux names
-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 4a691aba0..75f3e81b8 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -60,7 +60,7 @@ def get_manylinux(arch): default = '2014' ret = os.environ.get("MB_ML_VER", default) # XXX For PEP 600 this can be a glibc version - assert ret in ('1', '2010', '2014'), f'invalid MB_ML_VER {ret}' + assert ret in ('1', '2010', '2014', '_2_24'), f'invalid MB_ML_VER {ret}' return ret |