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
1 change: 1 addition & 0 deletions changes/3900.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove deprecated `zarr.convenience` and `zarr.creation` modules.
10 changes: 0 additions & 10 deletions docs/api/zarr/convenience.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/api/zarr/deprecated/convenience.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/api/zarr/deprecated/creation.md

This file was deleted.

8 changes: 0 additions & 8 deletions docs/api/zarr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Complete reference documentation for the Zarr-Python API.

- **[Load](load.md)** - Loading data from Zarr stores
- **[Save](save.md)** - Saving data to Zarr format
- **[Convenience](convenience.md)** - High-level convenience functions

### Data Types and Configuration

Expand Down Expand Up @@ -55,13 +54,6 @@ The ABC module defines interfaces for extending Zarr:
- **[Testing](testing/index.md)** - Utilities for testing Zarr-based code


## Migration and Compatibility

- **[Deprecated Functions](deprecated/convenience.md)** - Legacy convenience functions
- **[Deprecated Creation](deprecated/creation.md)** - Legacy array creation functions

These deprecated modules are maintained for backward compatibility but should be avoided in new code.

## Getting Help

- Check the [User Guide](../../user-guide/index.md) for tutorials and examples
Expand Down
5 changes: 0 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ nav:
- api/zarr/codecs.md
- api/zarr/codecs/numcodecs.md
- api/zarr/config.md
- api/zarr/convenience.md
- api/zarr/errors.md
- api/zarr/metadata.md
- api/zarr/registry.md
Expand Down Expand Up @@ -72,9 +71,6 @@ nav:
- api/zarr/testing/store.md
- api/zarr/testing/strategies.md
- api/zarr/testing/utils.md
- deprecated:
- Convenience sub-module: api/zarr/deprecated/convenience.md
- Creation sub-module: api/zarr/deprecated/creation.md
- release-notes.md
- contributing.md
watch:
Expand Down Expand Up @@ -221,7 +217,6 @@ plugins:
'developers/contributing.html.md': 'contributing.md'
'developers/index.html.md': 'contributing.md'
'developers/roadmap.html.md': 'https://zarr.readthedocs.io/en/v3.0.8/developers/roadmap.html'
'api/zarr/creation.md': 'api/zarr/deprecated/creation.md'
'api.md': 'api/zarr/index.md'
'api/zarr/metadata/migrate_v3.md': 'api/zarr/metadata.md'

Expand Down
4 changes: 2 additions & 2 deletions src/zarr/api/asynchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ async def open(
If using an fsspec URL to create the store, these will be passed to
the backend implementation. Ignored otherwise.
**kwargs
Additional parameters are passed through to [`zarr.creation.open_array`][] or
[`open_group`][zarr.api.asynchronous.open_group].
Additional parameters are passed through to `zarr.open_array` or
`zarr.open_group`.

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions src/zarr/api/synchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def open(
If using an fsspec URL to create the store, these will be passed to
the backend implementation. Ignored otherwise.
**kwargs
Additional parameters are passed through to [`zarr.creation.open_array`][] or
[`open_group`][zarr.api.asynchronous.open_group].
Additional parameters are passed through to `zarr.open_array` or
`zarr.open_group`.

Returns
-------
Expand Down
44 changes: 0 additions & 44 deletions src/zarr/convenience.py

This file was deleted.

47 changes: 0 additions & 47 deletions src/zarr/creation.py

This file was deleted.

Loading