Skip to content

Commit

Permalink
disable dask query-planning as workaround for bugs in dask-expr
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Oct 11, 2024
1 parent daf5c2d commit 1aa4a83
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sed/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
"""sed module easy access APIs."""
import importlib.metadata

from .core.processor import SedProcessor
import dask

dask.config.set({"dataframe.query-planning": False})

from .core.processor import SedProcessor # noqa: E402

__version__ = importlib.metadata.version("sed-processor")
__all__ = ["SedProcessor"]

0 comments on commit 1aa4a83

Please sign in to comment.