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

quell warnings #29

Merged
merged 1 commit into from
May 27, 2024
Merged
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
quell warnings
mgeplf committed May 23, 2024
commit d4068f3896cd4a406a56e3a927d4461eb9ec2f74
2 changes: 1 addition & 1 deletion atlas_direction_vectors/thalamus.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
from atlas_commons.typing import BoolArray, NDArray
from atlas_commons.utils import get_region_mask, query_region_mask
from scipy.ndimage import correlate # type: ignore
from scipy.ndimage.morphology import generate_binary_structure # type: ignore
from scipy.ndimage import generate_binary_structure # type: ignore
from voxcell import RegionMap, VoxelData

from atlas_direction_vectors.algorithms.layer_based_direction_vectors import (
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
filterwarnings = [
"ignore::DeprecationWarning:nptyping",
]