Skip to content

Commit 2594bea

Browse files
committed
DOC: show min supported version of numexpr is 2.1
1 parent 4093375 commit 2594bea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/computation/expressions.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
_NUMEXPR_INSTALLED = ver >= LooseVersion('2.1')
1818
if not _NUMEXPR_INSTALLED:
1919
warnings.warn("The installed version of numexpr {ver} is not supported "
20-
"in pandas and will be not be used".format(ver=ver), UserWarning)
20+
"in pandas and will be not be used\nThe minimum supported "
21+
"version is 2.1\n".format(ver=ver), UserWarning)
2122

2223
except ImportError: # pragma: no cover
2324
_NUMEXPR_INSTALLED = False

0 commit comments

Comments
 (0)