Skip to content

Commit

Permalink
Bump to Zarr3b3 (#454)
Browse files Browse the repository at this point in the history
* Bump to Zarr3b3

* Fix

confirmed that this matches upstream
  • Loading branch information
dcherian authored Dec 6, 2024
1 parent 57573fb commit 03df146
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion icechunk-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
license = { text = "Apache-2.0" }
dynamic = ["version"]

dependencies = ["zarr==3.0.0b2"]
dependencies = ["zarr==3.0.0b3"]

[tool.poetry]
name = "icechunk"
Expand Down
4 changes: 2 additions & 2 deletions icechunk-python/tests/test_zarr/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def test_array_name_properties_no_group(
store=store, shape=(100,), chunks=(10,), zarr_format=zarr_format, dtype="i4"
)
assert arr.path == ""
assert arr.name is None
assert arr.basename is None
assert arr.name == "/"
assert arr.basename == ""


@pytest.mark.parametrize("store", ["memory"], indirect=["store"])
Expand Down

0 comments on commit 03df146

Please sign in to comment.