You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/zarr/core/dtype/npy/bool.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ class Bool(ZDType[np.dtypes.BoolDType, np.bool_], HasItemSize):
41
41
----------
42
42
This class implements the boolean data type defined in Zarr V2 and V3.
43
43
44
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
44
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
Copy file name to clipboardExpand all lines: src/zarr/core/dtype/npy/float.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -324,7 +324,7 @@ class Float16(BaseFloat[np.dtypes.Float16DType, np.float16]):
324
324
----------
325
325
This class implements the float16 data type defined in Zarr V2 and V3.
326
326
327
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
327
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
328
328
"""
329
329
330
330
dtype_cls=np.dtypes.Float16DType
@@ -361,7 +361,7 @@ class Float32(BaseFloat[np.dtypes.Float32DType, np.float32]):
361
361
----------
362
362
This class implements the float32 data type defined in Zarr V2 and V3.
363
363
364
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
364
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
365
365
"""
366
366
367
367
dtype_cls=np.dtypes.Float32DType
@@ -398,7 +398,7 @@ class Float64(BaseFloat[np.dtypes.Float64DType, np.float64]):
398
398
----------
399
399
This class implements the float64 data type defined in Zarr V2 and V3.
400
400
401
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
401
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
Copy file name to clipboardExpand all lines: src/zarr/core/dtype/npy/int.py
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@ class Int8(BaseInt[np.dtypes.Int8DType, np.int8]):
242
242
----------
243
243
This class implements the 8-bit signed integer data type defined in Zarr V2 and V3.
244
244
245
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
245
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
246
246
"""
247
247
248
248
dtype_cls=np.dtypes.Int8DType
@@ -398,7 +398,7 @@ class UInt8(BaseInt[np.dtypes.UInt8DType, np.uint8]):
398
398
----------
399
399
This class implements the 8-bit unsigned integer data type defined in Zarr V2 and V3.
400
400
401
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
401
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
402
402
"""
403
403
404
404
dtype_cls=np.dtypes.UInt8DType
@@ -545,7 +545,7 @@ class Int16(BaseInt[np.dtypes.Int16DType, np.int16], HasEndianness):
545
545
----------
546
546
This class implements the 16-bit signed integer data type defined in Zarr V2 and V3.
547
547
548
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
548
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
549
549
"""
550
550
551
551
dtype_cls=np.dtypes.Int16DType
@@ -707,7 +707,7 @@ class UInt16(BaseInt[np.dtypes.UInt16DType, np.uint16], HasEndianness):
707
707
----------
708
708
This class implements the unsigned 16-bit unsigned integer data type defined in Zarr V2 and V3.
709
709
710
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
710
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
711
711
"""
712
712
713
713
dtype_cls=np.dtypes.UInt16DType
@@ -869,7 +869,7 @@ class Int32(BaseInt[np.dtypes.Int32DType, np.int32], HasEndianness):
869
869
----------
870
870
This class implements the 32-bit signed integer data type defined in Zarr V2 and V3.
871
871
872
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
872
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
873
873
"""
874
874
875
875
dtype_cls=np.dtypes.Int32DType
@@ -1052,7 +1052,7 @@ class UInt32(BaseInt[np.dtypes.UInt32DType, np.uint32], HasEndianness):
1052
1052
----------
1053
1053
This class implements the 32-bit unsigned integer data type defined in Zarr V2 and V3.
1054
1054
1055
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
1055
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
1056
1056
"""
1057
1057
1058
1058
dtype_cls=np.dtypes.UInt32DType
@@ -1210,7 +1210,7 @@ class Int64(BaseInt[np.dtypes.Int64DType, np.int64], HasEndianness):
1210
1210
----------
1211
1211
This class implements the 64-bit signed integer data type defined in Zarr V2 and V3.
1212
1212
1213
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
1213
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
1214
1214
"""
1215
1215
1216
1216
dtype_cls=np.dtypes.Int64DType
@@ -1368,7 +1368,7 @@ class UInt64(BaseInt[np.dtypes.UInt64DType, np.uint64], HasEndianness):
1368
1368
----------
1369
1369
This class implements the unsigned 64-bit integer data type defined in Zarr V2 and V3.
1370
1370
1371
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`_ specification documents for details.
1371
+
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
@@ -467,7 +467,7 @@ class UTF8Base(ZDType[TDType_co, str], HasObjectCodec):
467
467
----------
468
468
This data type does not have a Zarr V3 specification.
469
469
470
-
The Zarr V2 data type specification can be found `here <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_.
470
+
The Zarr V2 data type specification can be found `here <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__.
@@ -100,7 +100,7 @@ class Structured(ZDType[np.dtypes.VoidDType[int], np.void], HasItemSize):
100
100
----------
101
101
This data type does not have a Zarr V3 specification.
102
102
103
-
The Zarr V2 data type specification can be found `here <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`_.
103
+
The Zarr V2 data type specification can be found `here <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__.
0 commit comments