We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e25cf commit 7c644ebCopy full SHA for 7c644eb
1 file changed
src/zarr/core/dtype/common.py
@@ -14,6 +14,7 @@
14
)
15
16
from zarr.core.common import NamedConfig
17
+from zarr.errors import ZarrFutureWarning
18
19
EndiannessStr = Literal["little", "big"]
20
ENDIANNESS_STR: Final = "little", "big"
@@ -205,7 +206,7 @@ class HasObjectCodec:
205
206
object_codec_id: ClassVar[str]
207
208
-class UnstableSpecificationWarning(FutureWarning): ...
209
+class UnstableSpecificationWarning(ZarrFutureWarning): ...
210
211
212
def v3_unstable_dtype_warning(dtype: object) -> None:
0 commit comments