Skip to content

Commit 41bdebd

Browse files
jorenhamjulvdb
authored andcommitted
integrate: fix failing solve_ivp test on numpy<2.1
1 parent 238d389 commit 41bdebd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrate/test_solve_ivp.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ from scipy.integrate import solve_ivp
88

99
_VecF64: TypeAlias = np.ndarray[tuple[int], np.dtype[np.float64]]
1010
_MatF64: TypeAlias = np.ndarray[tuple[int, int], np.dtype[np.float64]]
11-
_ArrF64: TypeAlias = np.ndarray[tuple[int, ...], np.dtype[np.float64]]
12-
_VecC128: TypeAlias = np.ndarray[tuple[Any], np.dtype[np.complex128]]
11+
_ArrF64: TypeAlias = np.ndarray[tuple[Any, ...], np.dtype[np.float64]]
12+
_VecC128: TypeAlias = np.ndarray[tuple[int], np.dtype[np.complex128]]
1313
_MatC128: TypeAlias = np.ndarray[tuple[int, int], np.dtype[np.complex128]]
1414
_ArrC128: TypeAlias = np.ndarray[tuple[Any, ...], np.dtype[np.complex128]]
1515

0 commit comments

Comments
 (0)