-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Zarr V3 writer to latest spec (#33)
* update zarr-python dependency to 3.0.0b3 * Explicitly depend on ZLIB * Update group metadata. * wip: array up to V3 spec * Tests passing. * Add another example (V3 raw filesystem). * Fix memory leak in examples. * Use uint32_t for CRC32 checksum, as unsigned long is 8 bytes on some systems. * Metadata file 0/.zattrs is no longer necessary. * Update Python tests. * Update Python project to v0.0.4. * Update test Python to 3.11 and zarr-python dependency to 3.0.0rc1. * dataset/0 will not exist because dataset/0/.zattrs is no longer created. * revert examples changes * Respond to PR comments.
- Loading branch information
Showing
23 changed files
with
573 additions
and
503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ target_link_libraries(${tgt} PRIVATE | |
acquire-zarr | ||
nlohmann_json::nlohmann_json | ||
miniocpp::miniocpp | ||
ZLIB::ZLIB | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "acquire-zarr" | ||
version = "0.0.2" | ||
version = "0.0.4" | ||
description = "Python bindings for acquire-zarr" | ||
authors = [ | ||
{name = "Alan Liddell", email = "[email protected]"} | ||
|
@@ -30,7 +30,7 @@ testing = [ | |
"ruff", | ||
"s3fs", | ||
"tifffile", | ||
"zarr", | ||
"zarr==3.0.0rc1", | ||
"python-dotenv", | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.