Skip to content

Commit 6ddd407

Browse files
Pin icechunk for now and fix test
1 parent dd76460 commit 6ddd407

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

ci/upstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ dependencies:
2828
- fsspec
2929
- pip
3030
- pip:
31-
- icechunk>=0.1.0a8 # Installs zarr v3 as dependency
31+
- icechunk==0.1.0a8 # Installs zarr v3 beta 3 as dependency
3232
# - git+https://github.com/fsspec/kerchunk@main # kerchunk is currently incompatible with zarr-python v3 (https://github.com/fsspec/kerchunk/pull/516)
3333
- imagecodecs-numcodecs==2024.6.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ hdf_reader = [
3939
"numcodecs"
4040
]
4141
icechunk = [
42-
"icechunk>=0.1.0a8",
42+
"icechunk==0.1.0a8",
4343
]
4444
test = [
4545
"codecov",

virtualizarr/tests/test_writers/test_icechunk.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,9 @@ async def test_append_with_multiple_root_arrays(
710710
"time/c/0", prototype=default_buffer_prototype()
711711
)
712712
) == first_time_chunk_before_append
713-
new_ds = open_zarr(icechunk_filestore_append, consolidated=False, zarr_format=3)
713+
new_ds = open_zarr(
714+
icechunk_filestore_append.store, consolidated=False, zarr_format=3
715+
)
714716

715717
expected_ds1, expected_ds2 = open_dataset(filepath1), open_dataset(filepath2)
716718
expected_ds = concat([expected_ds1, expected_ds2], dim="time")

0 commit comments

Comments
 (0)