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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tensorstore = [
"tensorstore>=0.1.64",
]

[project.entry-points."iohub.zarr-implementations"]
[project.entry-points."iohub.zarr_implementations"]
zarr = "iohub.core.implementations.zarr_python:ZarrPythonImplementation"
tensorstore = "iohub.core.implementations.tensorstore:TensorStoreImplementation"

Expand Down
2 changes: 1 addition & 1 deletion src/iohub/core/implementations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Zarr I/O implementation backends.

Implementations are discovered via the ``iohub.zarr-implementations``
Implementations are discovered via the ``iohub.zarr_implementations``
entry point group. See :mod:`iohub.core.registry` for the discovery mechanism.

For direct imports::
Expand Down
2 changes: 1 addition & 1 deletion src/iohub/core/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _discover() -> None:
exc_info=True,
)
# Entrypoint plugins can override builtins
for ep in entry_points(group="iohub.zarr-implementations"):
for ep in entry_points(group="iohub.zarr_implementations"):
try:
_IMPLEMENTATIONS[ep.name] = ep.load()
except Exception as err: # noqa: BLE001 — plugin loading may fail in many ways
Expand Down
Loading