Skip to content

Commit

Permalink
COMPAT: For pandas 0.21.0 numexpr import
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Oct 3, 2017
1 parent ea3c1ec commit e3557fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/dataframe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

if PANDAS_VERSION >= '0.20.0':
from pandas.util import cache_readonly
pd.core.computation.expressions.set_use_numexpr(False)
pd.set_option('compute.use_numexpr', False)
else:
from pandas.util.decorators import cache_readonly
pd.computation.expressions.set_use_numexpr(False)
Expand Down

0 comments on commit e3557fd

Please sign in to comment.