We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3fad015 + d532ea3 commit 3e996e7Copy full SHA for 3e996e7
docs/source/news.rst
@@ -8,6 +8,10 @@ Enhancements:
8
9
* Added official support for Python 3.13, though 1.15.0 works fine too.
10
11
+Changes:
12
+
13
+* Tests pass with latest Dask.
14
15
1.15.0
16
^^^^^^
17
eliot/dask.py
@@ -6,6 +6,7 @@
6
7
try:
from dask.distributed import Future
+ from dask.highlevelgraph import HighLevelGraph
except:
class Future(object):
@@ -108,6 +109,9 @@ def _add_logging(dsk, ignore=None):
108
109
110
@return: New Dask graph.
111
"""
112
+ if isinstance(dsk, HighLevelGraph):
113
+ dsk = dsk.to_dict()
114
115
ctx = current_action()
116
result = {}
117
0 commit comments