We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4093375 commit 2594beaCopy full SHA for 2594bea
pandas/computation/expressions.py
@@ -17,7 +17,8 @@
17
_NUMEXPR_INSTALLED = ver >= LooseVersion('2.1')
18
if not _NUMEXPR_INSTALLED:
19
warnings.warn("The installed version of numexpr {ver} is not supported "
20
- "in pandas and will be not be used".format(ver=ver), UserWarning)
+ "in pandas and will be not be used\nThe minimum supported "
21
+ "version is 2.1\n".format(ver=ver), UserWarning)
22
23
except ImportError: # pragma: no cover
24
_NUMEXPR_INSTALLED = False
0 commit comments