From 15be0568e6e06f880f953f12fe2598e093643b68 Mon Sep 17 00:00:00 2001 From: Davis Vann Bennett Date: Thu, 3 Jul 2025 18:21:52 +0200 Subject: [PATCH] export more JSON types --- src/zarr/dtype.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/zarr/dtype.py b/src/zarr/dtype.py index 98485c7d65..79f3aa3a0f 100644 --- a/src/zarr/dtype.py +++ b/src/zarr/dtype.py @@ -7,6 +7,8 @@ DateTime64JSON_V2, DateTime64JSON_V3, FixedLengthUTF32, + FixedLengthUTF32JSON_V2, + FixedLengthUTF32JSON_V3, Float16, Float32, Float64, @@ -15,8 +17,10 @@ Int32, Int64, NullTerminatedBytes, + NullterminatedBytesJSON_V2, NullTerminatedBytesJSON_V3, RawBytes, + RawBytesJSON_V2, RawBytesJSON_V3, Structured, StructuredJSON_V2, @@ -46,6 +50,8 @@ "DateTime64JSON_V2", "DateTime64JSON_V3", "FixedLengthUTF32", + "FixedLengthUTF32JSON_V2", + "FixedLengthUTF32JSON_V3", "Float16", "Float32", "Float64", @@ -55,7 +61,9 @@ "Int64", "NullTerminatedBytes", "NullTerminatedBytesJSON_V3", + "NullterminatedBytesJSON_V2", "RawBytes", + "RawBytesJSON_V2", "RawBytesJSON_V3", "Structured", "StructuredJSON_V2",