Skip to content

Commit f43a886

Browse files
committed
Fixed test incompatiblity requiring 3.9+
1 parent 644bab5 commit f43a886

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/test_00_validate.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,11 @@ def test_numpy_array() -> None:
355355
]
356356
]
357357
])
358-
validate(val, npt.NDArray[np.number[typing.Any]])
359-
validate(val, npt.NDArray[np.integer[typing.Any]])
360-
validate(val, npt.NDArray[np.unsignedinteger[typing.Any]])
361-
validate(val, npt.NDArray[np.generic])
358+
if sys.version_info[1] >= 9:
359+
validate(val, npt.NDArray[np.number[typing.Any]])
360+
validate(val, npt.NDArray[np.integer[typing.Any]])
361+
validate(val, npt.NDArray[np.unsignedinteger[typing.Any]])
362+
validate(val, npt.NDArray[np.generic])
362363

363364
def test_numpy_array_error() -> None:
364365
# pylint: disable = import-outside-toplevel

0 commit comments

Comments
 (0)