diff options
author | mattip <matti.picus@gmail.com> | 2020-05-06 20:17:28 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-05-06 20:17:28 +0300 |
commit | aab329ce1c92c2b5a12dcf545c91761ec5c5a4a1 (patch) | |
tree | 452d6350fc85d179c56e722589b849f192073efd /tools/openblas_support.py | |
parent | cea894c0e9ce12f3823d06f680a5e8523a255371 (diff) | |
download | numpy-aab329ce1c92c2b5a12dcf545c91761ec5c5a4a1.tar.gz |
BUG: use default
Diffstat (limited to 'tools/openblas_support.py')
-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 2fae38627..a729662c5 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -43,7 +43,7 @@ def get_manylinux(arch): default = '2010' else: default = '2014' - ret = os.environ.get("MB_ML_VER", "2010") + 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}' return ret |