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

Remove data loading code #420

Merged
merged 2 commits into from
May 15, 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
82 changes: 0 additions & 82 deletions cellfinder/core/tools/IO.py

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"brainglobe-utils>=0.4.3",
"brainglobe-utils>=0.5.0",
"brainglobe-napari-io>=0.3.4",
"dask[array]",
"fancylog>=0.0.7",
Expand Down
2 changes: 1 addition & 1 deletion tests/core/test_integration/test_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import numpy as np
import pytest
from brainglobe_utils.general.system import get_num_processes
from brainglobe_utils.IO.image.load import read_with_dask

from cellfinder.core.main import main
from cellfinder.core.tools.IO import read_with_dask

data_dir = os.path.join(
os.getcwd(), "tests", "data", "integration", "detection"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import os

import pytest
from brainglobe_utils.IO.image.load import read_with_dask

from cellfinder.core.main import main
from cellfinder.core.tools.IO import read_with_dask

data_dir = os.path.join(
os.getcwd(), "tests", "data", "integration", "detection"
Expand Down
18 changes: 0 additions & 18 deletions tests/core/test_unit/test_tools/test_IO.py

This file was deleted.

Loading