Skip to content

Commit d8aa1fc

Browse files
committed
COMPAT: For pandas 0.21.0 numexpr import
pandas-dev/pandas#17710
1 parent 31f82cf commit d8aa1fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dask/dataframe/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
if PANDAS_VERSION >= '0.20.0':
3939
from pandas.util import cache_readonly
40-
pd.core.computation.expressions.set_use_numexpr(False)
40+
pd.set_option('compute.use_numexpr', False)
4141
else:
4242
from pandas.util.decorators import cache_readonly
4343
pd.computation.expressions.set_use_numexpr(False)

0 commit comments

Comments
 (0)