From d13b8021a6ed677961c44784e32d2dbc37b4963b Mon Sep 17 00:00:00 2001
From: Martin Teichmann <martin.teichmann@xfel.eu>
Date: Wed, 7 Feb 2024 18:32:28 +0100
Subject: [PATCH] stop using np.bool

this does not exist anymore
---
 src/toolbox_scs/base/knife_edge.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/toolbox_scs/base/knife_edge.py b/src/toolbox_scs/base/knife_edge.py
index 26b8ae5..92d8b3a 100644
--- a/src/toolbox_scs/base/knife_edge.py
+++ b/src/toolbox_scs/base/knife_edge.py
@@ -148,7 +148,7 @@ def arrays_to1d(arrX: np.ndarray, arrY: np.ndarray):
 def range_mask(array, minimum=None, maximum=None):
     """Retrieve the resulting array from the given minimum and maximum
     """
-    default = np.ones(array.shape, dtype=np.bool)
+    default = np.ones(array.shape, dtype=bool)
     min_slice, max_slice = default, default
     if minimum is not None:
         if minimum > np.nanmax(array):
-- 
GitLab