Skip to content

Commit 146b69b

Browse files
authored
add no cover pragma (#546)
1 parent 3f972d9 commit 146b69b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numcodecs/zfpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if _zfpy_version:
1212
# Check NumPy version
1313
_numpy_version: tuple = tuple(map(int, version("numpy").split('.')))
14-
if _numpy_version >= (2, 0, 0) and _zfpy_version <= (1, 0, 1):
14+
if _numpy_version >= (2, 0, 0) and _zfpy_version <= (1, 0, 1): # pragma: no cover
1515
_zfpy_version = ()
1616
warnings.warn(
1717
"NumPy version >= 2.0.0 detected. The zfpy library is incompatible with this version of NumPy. "

0 commit comments

Comments
 (0)