summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-05-06 10:35:50 -0600
committerGitHub <noreply@github.com>2020-05-06 10:35:50 -0600
commitcea894c0e9ce12f3823d06f680a5e8523a255371 (patch)
treea12fd158facc24ffd83d3fca5f292a63bfc6a3ad
parent45cff3cc9eda53977c50ea96a7bb2180587924f9 (diff)
downloadnumpy-cea894c0e9ce12f3823d06f680a5e8523a255371.tar.gz
MAINT: Fix '2104' typo, should be '2014'.
-rw-r--r--tools/openblas_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py
index d75d867bb..2fae38627 100644
--- a/tools/openblas_support.py
+++ b/tools/openblas_support.py
@@ -42,7 +42,7 @@ def get_manylinux(arch):
if arch in ('x86_64', 'i686'):
default = '2010'
else:
- default = '2104'
+ default = '2014'
ret = os.environ.get("MB_ML_VER", "2010")
# XXX For PEP 600 this can be a glibc version
assert ret in ('1', '2010', '2014'), f'invalid MB_ML_VER {ret}'