Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to latest iohub #15

Merged
merged 2 commits into from
Oct 16, 2024
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: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ install_requires =
numpy
magicgui
qtpy
iohub
iohub==0.2.0a1
pydantic_extra_types>=2.9.0

python_requires = >=3.10
include_package_data = True
Expand Down
2 changes: 1 addition & 1 deletion src/napari_iohub/_edit_labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from napari import Viewer
import numpy as np
from iohub.ngff import Plate, Position, Row, Well, open_ome_zarr
from iohub.ngff.nodes import Plate, Position, Row, Well, open_ome_zarr
from qtpy.QtWidgets import (
QFileDialog,
QFormLayout,
Expand Down
4 changes: 2 additions & 2 deletions src/napari_iohub/_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import dask.array as da
import numpy as np
from iohub.ngff import (
from iohub.ngff.nodes import (
MultiScaleMeta,
NGFFNode,
OMEROMeta,
Expand All @@ -16,7 +16,7 @@
_open_store,
open_ome_zarr,
)
from pydantic.color import Color
from pydantic_extra_types.color import Color

if TYPE_CHECKING:
from _typeshed import StrOrBytesPath
Expand Down
2 changes: 1 addition & 1 deletion src/napari_iohub/_tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np
import pytest
from iohub.ngff import open_ome_zarr
from iohub import open_ome_zarr


@pytest.fixture(scope="session")
Expand Down
2 changes: 1 addition & 1 deletion src/napari_iohub/_tests/test_reader.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from iohub.ngff import open_ome_zarr
from iohub import open_ome_zarr
from numpy.testing import assert_equal

from napari_iohub import napari_get_reader
Expand Down
2 changes: 1 addition & 1 deletion src/napari_iohub/_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Callable

import napari
from iohub.ngff import Plate, Row, Well, open_ome_zarr
from iohub.ngff.nodes import Plate, Row, Well, open_ome_zarr
from napari.qt.threading import create_worker
from napari.utils.notifications import show_info
from qtpy.QtCore import Qt
Expand Down
Loading