Skip to content

Commit 7aa32a4

Browse files
committed
Fix patch
1 parent acc9533 commit 7aa32a4

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

recipes/recipes_emscripten/reproject/patches/no_dask_image.patch

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
diff --git a/reproject/array_utils.py b/reproject/array_utils.py
22
--- a/reproject/array_utils.py
33
+++ b/reproject/array_utils.py
4-
@@ -1,7 +1,5 @@
4+
@@ -1,6 +1,4 @@
55
import numpy as np
66
-from dask_image.ndinterp import map_coordinates as dask_image_map_coordinates
77
-from dask_image.ndinterp import spline_filter
8-
-from scipy.ndimage import spline_filter as scipy_spline_filter
9-
+from scipy.ndimage import spline_filter as scipy_spline_filter
8+
from scipy.ndimage import spline_filter as scipy_spline_filter
109

1110
__all__ = ["map_coordinates", "dask_map_coordinates", "sample_array_edges", "ArrayWrapper"]
12-
1311
@@ -85,6 +83,10 @@ def _clip_coords(image, coords):
1412

1513
def dask_map_coordinates(image, coords, output=None, **kwargs):

0 commit comments

Comments
 (0)