You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stricter data type for dask keys dask/dask#10485 (released with dask 2023.9.1) narrowed the allowable types for keys to Union[str, bytes, int, float, tuple["Key", ...]]. genno.Key is not a subtype of any of these, but seemed to work until the above changes.
File any bug(s) upstream. Upstream didn't communicate the changes loudly, but the behaviour is as advertised/specified.
Adapt code in genno that interacts with dask.
To mitigate/work around:
Use genno with dask 2024.10.0 or earlier.
The text was updated successfully, but these errors were encountered:
Dask 2024.11.0 was released on 2024-11-08, triggering CI failures, for instance here.
These include (click to expand):
To resolve:
Union[str, bytes, int, float, tuple["Key", ...]]
.genno.Key
is not a subtype of any of these, but seemed to work until the above changes.File any bug(s) upstream.Upstream didn't communicate the changes loudly, but the behaviour is as advertised/specified.To mitigate/work around:
The text was updated successfully, but these errors were encountered: