针对pulse-transit的工具
This commit is contained in:
10
dist/client/pandas/core/computation/check.py
vendored
Normal file
10
dist/client/pandas/core/computation/check.py
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
from pandas.compat._optional import import_optional_dependency
|
||||
|
||||
ne = import_optional_dependency("numexpr", errors="warn")
|
||||
NUMEXPR_INSTALLED = ne is not None
|
||||
if NUMEXPR_INSTALLED:
|
||||
NUMEXPR_VERSION = ne.__version__
|
||||
else:
|
||||
NUMEXPR_VERSION = None
|
||||
|
||||
__all__ = ["NUMEXPR_INSTALLED", "NUMEXPR_VERSION"]
|
||||
Reference in New Issue
Block a user