Closed psobolewskiPhD closed 2 months ago
Test fail is due to missing test dependency. I'm trying to fix it here: https://github.com/napari/napari-animation/pull/230
Edit: new fails are due to another napari change as far as I can tell: https://github.com/napari/napari-animation/issues/231
Remaining issues fixed by @Czaki - thanks both of you for sorting this so quickly!
Closes: https://github.com/napari/napari-animation/issues/228
As of https://github.com/napari/napari/pull/6976 (0.5.0)
as_layer_data_tuple
doesn't return a dict anymore, but a_DeprecatingDict
. This means that the checks that useisinstance(foo, dict)
in ViewerState and in interpolation.utils fail.This PR coerces the output of
as_layer_data_tuple
in ViewerState to avoid this issue. The alternative would be to change the checks fordict
to MutableMapping or such.See: https://napari.zulipchat.com/#narrow/stream/212875-general/topic/DeprecatingDict.20not.20accepted.20in.20LayerDataTuple