From 5760fa040fcf4de46c02704e8e767580435dfccf Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 6 Dec 2024 08:13:48 -0500 Subject: [PATCH] BUG: Add ngff_zarr.zarr_metadata backwards compatibility module Re-provides the default OME-Zarr version zarr metadata at the same module location for backwards compatibility, issue #122. --- ngff_zarr/zarr_metadata.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 ngff_zarr/zarr_metadata.py diff --git a/ngff_zarr/zarr_metadata.py b/ngff_zarr/zarr_metadata.py new file mode 100644 index 0000000..ade4305 --- /dev/null +++ b/ngff_zarr/zarr_metadata.py @@ -0,0 +1,2 @@ +# The version should match the default version in to_ngff_zarr +from .v04.zarr_metadata import * # noqa: F403