We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2be002 commit 3017a99Copy full SHA for 3017a99
src/zarr/testing/strategies.py
@@ -220,10 +220,9 @@ def orthogonal_indices(
220
newshape = [1] * ndim
221
newshape[axis] = idxr.size
222
npindexer.append(idxr.reshape(newshape))
223
- from hypothesis import note
224
225
- note(val)
226
- return tuple(zindexer), np.broadcast_arrays(*npindexer)
+ # casting the output of broadcast_arrays is needed for numpy 1.25
+ return tuple(zindexer), tuple(np.broadcast_arrays(*npindexer))
227
228
229
def key_ranges(
0 commit comments