Skip to content

Commit efec83c

Browse files
committed
Add note about updating dependencies in pyproject.toml
1 parent 703a7cd commit efec83c

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ version = "0.0.0"
2020
# - or: python = ">=3.10"
2121

2222
[tool.poetry.dependencies]
23+
# IMPORTANT: see the "poetry.lock.md" file when changing dependencies!!!
2324
imcf-fiji-mocks = ">=0.13.0"
2425
python = ">=2.7"
2526
python-micrometa = "^15.2.3"
@@ -54,3 +55,9 @@ ignore = [
5455

5556
[tool.ruff.lint.pydocstyle]
5657
convention = "numpy"
58+
59+
[tool.coverage.report]
60+
exclude_also = [
61+
'no-cover:jython-only',
62+
'cover:jython',
63+
]

src/imcflibs/imagej/objects3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def segment_3d_image(
8080
max_vol=None,
8181
remove_touching_borders=False,
8282
remove_touching_borders_z=False,
83-
): # pragma: no cover (Jython-only)
83+
): # cover:jython
8484
"""Segment a 3D binary image to get a labelled stack.
8585
8686
Parameters

0 commit comments

Comments
 (0)