From 1470ca7f88861115deb68203fef7455ded0f44c2 Mon Sep 17 00:00:00 2001 From: Matthieu Chourrout <83714683+chourroutm@users.noreply.github.com> Date: Fri, 23 Jan 2026 14:27:54 -0500 Subject: [PATCH] Drop dask_image in favor of dask.array.image --- docs/tutorial/tutorial.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial/tutorial.py b/docs/tutorial/tutorial.py index 429789a..89c2473 100644 --- a/docs/tutorial/tutorial.py +++ b/docs/tutorial/tutorial.py @@ -10,7 +10,7 @@ import sys import tempfile -import dask_image.imread +from dask.array.image import imread import matplotlib.pyplot as plt import skimage.color import skimage.data @@ -49,10 +49,10 @@ # This also makes stack-to-chunk flexible - as long as you can put your 2D images into # a 3D dask array, they can be used with stack-to-chunk. # -# For this tutorial, ``dask_image`` provides a convenient way for us to read in all our +# For this tutorial, ``dask.array.image.imread`` provides a convenient way for us to read in all our # TIFF files: -images = dask_image.imread.imread(str(slice_dir / "*.tif")).T +images = imread(str(slice_dir / "*.tif")).T print(images) # %%