Skip to content

Commit

Permalink
Add some recommended versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gselzer committed Oct 11, 2024
1 parent 9c216ef commit fff47e9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/napari_imagej/java.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,22 @@
"sc.fiji:TrackMate": "7.11.0",
}


# Each component listed here should be paired with a comment describing WHY it is here
recommended_versions = {
# Versions above are easier for inclusion of scifio-labeling
# https://github.com/imagej/pyimagej/issues/280
"net.imagej:imagej": "2.10.0",
# Enable visualizing Datasets with DefaultROITrees
# https://github.com/imagej/imagej-legacy/pull/300
"net.imagej:imagej-legacy": "1.2.1",
# Enables threshold Ops to return Images of BooleanTypes
# https://github.com/imagej/imagej-ops/pull/651
"net.imagej:imagej-ops": "2.0.1",
# Prevents non-empty SciJava Search Results for empty searches
# https://github.com/scijava/scijava-search/pull/30
"org.scijava:scijava-search": "2.0.4",
# Versions above are easier for inclusion of scifio-labeling
# https://github.com/imagej/pyimagej/issues/280
"sc.fiji:fiji": "2.10.0",
}

Expand Down Expand Up @@ -141,6 +154,7 @@ def validate_imagej(ij: "jc.ImageJ") -> List[str]:

return warnings


# -- Private functions -- #


Expand Down

0 comments on commit fff47e9

Please sign in to comment.