Skip to content

Commit 23e6610

Browse files
committed
Fix Dask 2 support, and add a changelog entry.
1 parent 2cdac98 commit 23e6610

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/source/news.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ What's New
44
1.10.0
55
^^^^^^
66

7-
Bug fix:
7+
Bug fixes:
88

99
* ``@eliot.testing.capture_logging`` now passes ``*args`` and ``**kwargs`` to the wrapped function, as one would expect. Fixes #420. Thanks to Jean-Paul Calderone for the bug report.
10+
* Eliot works with Dask 2.0. Thanks to Dan Myung for the bug report.
1011

1112
1.9.0
1213
^^^^^

eliot/dask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def simplify(k):
127127
)
128128
result[key] = (wrapped_func,) + tuple(args)
129129

130-
assert result.keys() == dsk.keys()
130+
assert set(result.keys()) == set(dsk.keys())
131131
return result
132132

133133

0 commit comments

Comments
 (0)