-
Notifications
You must be signed in to change notification settings - Fork 14
V2 groups #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
V2 groups #25
Changes from 14 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
2f7b6bb
remove zarrita
brokkoli71 e05996e
setup uv in ZarrPythonTests automatically
brokkoli71 3ad5e88
add core.Node
brokkoli71 0a5930a
implement and test v2 Group with metadata handling
brokkoli71 7f512b3
fix inheritance of v3.codec.Codec
brokkoli71 bf4a1ea
add v2 sample
brokkoli71 cf80fcf
add static open function that auto-detects the Zarr version
brokkoli71 c03f3c6
overload open and create for Path and String arguments
brokkoli71 12a0f94
add API tests for open, create and refactor tests structure
brokkoli71 0fedf6f
fix windows paths in tests
brokkoli71 8f58d46
cleanup create api
brokkoli71 4448011
Merge branch 'main' into v2-groups
brokkoli71 fbdccd0
finish merge update dependency versions
brokkoli71 72393a9
Refactor ZarrV2 and ZarrV3 tests to improve readability and structure…
brokkoli71 54175d2
detect typesize for blosc with evolve_from_core_array_metadata
brokkoli71 9dc2b40
fix BytesCodec for boolean
brokkoli71 d37c355
add testdata for bool
brokkoli71 88543e6
zarr-python tests for datatypes
brokkoli71 94e9e37
fix BytesCodec encode for bool, float, double
brokkoli71 cdd153d
make metadata() public but field metadata private
brokkoli71 31d6aec
camelCase for evolveFromCoreArrayMetadata
brokkoli71 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -43,7 +43,6 @@ jobs: | |
| run: | | ||
| uv venv && uv init | ||
| uv add zarr | ||
| uv add zarrita | ||
|
|
||
| - name: Download testdata | ||
| run: | | ||
|
|
||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| package dev.zarr.zarrjava.core; | ||
|
|
||
| import dev.zarr.zarrjava.store.StoreHandle; | ||
|
|
||
| import javax.annotation.Nonnull; | ||
|
|
||
| public class AbstractNode implements Node { | ||
|
|
||
| @Nonnull | ||
| public final StoreHandle storeHandle; | ||
|
|
||
| protected AbstractNode(@Nonnull StoreHandle storeHandle) { | ||
| this.storeHandle = storeHandle; | ||
| } | ||
| } |
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.