This code claims it will be removed in version 3.1.0:
|
async def create_dataset( |
|
self, name: str, *, shape: ShapeLike, **kwargs: Any |
|
) -> AsyncArray[ArrayV2Metadata] | AsyncArray[ArrayV3Metadata]: |
|
"""Create an array. |
|
|
|
!!! warning "Deprecated" |
|
`AsyncGroup.create_dataset()` is deprecated since v3.0.0 and will be removed in v3.1.0. |
|
Use `AsyncGroup.create_array` instead. |
however it was not.
not sure what the best move it, to extend that farther, or to just remove it now?
This code claims it will be removed in version 3.1.0:
zarr-python/src/zarr/core/group.py
Lines 1157 to 1164 in 1cd4f7e
however it was not.
not sure what the best move it, to extend that farther, or to just remove it now?