Skip to content

Commit f225598

Browse files
author
Francesc Alted
committed
Updated test_compat for numexpr 2.4.6
1 parent 8bd4ed1 commit f225598

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/computation/test_compat.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ def test_compat():
2121
try:
2222
import numexpr as ne
2323
ver = ne.__version__
24-
if ver == LooseVersion('2.4.4'):
25-
assert not _NUMEXPR_INSTALLED
26-
elif ver < LooseVersion('2.1'):
24+
elif ver < LooseVersion('2.4.6'):
2725
with tm.assert_produces_warning(UserWarning,
2826
check_stacklevel=False):
2927
assert not _NUMEXPR_INSTALLED

0 commit comments

Comments
 (0)