diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2021-11-21 09:07:23 -0700 |
|---|---|---|
| committer | Charles Harris <charlesr.harris@gmail.com> | 2021-11-21 13:05:52 -0700 |
| commit | 5a4ecc0861d3116a068b63b4fc9f89e11d9bc225 (patch) | |
| tree | d76ac302ed3af27babb507d830540b2f8f1c2d02 | |
| parent | cf5b4a440608517eb7001631e9e1363532aa827e (diff) | |
| download | numpy-5a4ecc0861d3116a068b63b4fc9f89e11d9bc225.tar.gz | |
MAINT: Fix longdouble precision check.
This is a partial reversion of #20274. My guess is that
`glibc_older_than("2.19")` is not working correctly on manylinux2014
on aarch64.
Closes #20426.
| -rw-r--r-- | numpy/core/tests/test_umath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index fc7c592f0..c0b26e75b 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -3433,7 +3433,7 @@ class TestComplexFunctions: x_series = np.logspace(-20, -3.001, 200) x_basic = np.logspace(-2.999, 0, 10, endpoint=False) - if glibc_older_than("2.19") and dtype is np.longcomplex: + if dtype is np.longcomplex: if (platform.machine() == 'aarch64' and bad_arcsinh()): pytest.skip("Trig functions of np.longcomplex values known " "to be inaccurate on aarch64 for some compilation " |
