Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@

### Internal changes

- Mark `test_read_netcdf3` as also requiring `kerchunk`. It already had `@requires_scipy`, but `NetCDF3Parser` lazily imports `kerchunk.netCDF3`, so the test raised `ModuleNotFoundError` in any environment with scipy but not kerchunk (e.g. pixi `min-deps` once a transitive dep started pulling in scipy).
By [Tom Nicholas](https://github.com/TomNicholas).

## v2.6.1 (3rd May 2026)

Adds end-to-end support for inlined chunk references in `ChunkManifest` (read via Kerchunk parsers, write via Kerchunk and Icechunk writers), plus Zarr-Python 3.2.0 compatibility and several bug fixes.
Expand Down
1 change: 1 addition & 0 deletions virtualizarr/tests/test_parsers/test_netcdf3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from virtualizarr.tests.utils import obstore_http


@requires_kerchunk
@requires_scipy
def test_read_netcdf3(netcdf3_file, array_v3_metadata, local_registry):
filepath = str(netcdf3_file)
Expand Down
Loading