File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/java/qupath/ext/py4j/core Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3636 MAVEN_USER : ${{ secrets.MAVEN_USER }}
3737 MAVEN_PASS : ${{ secrets.MAVEN_PASS }}
3838
39- - uses : actions/upload-artifact@v3
39+ - uses : actions/upload-artifact@v4
4040 if : ${{ inputs.release }}
4141 with :
4242 name : ${{ github.event.repository.name }}-release-jar
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66
77qupathExtension {
88 name = " qupath-extension-py4j"
9- version = " 0.1.0-SNAPSHOT "
9+ version = " 0.1.0-rc1 "
1010 group = " io.github.qupath"
1111 description = " Connect QuPath to Python using Py4J"
1212 automaticModule = " qupath.extension.py4j"
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ public static List<String> getObjectIds(Collection<? extends PathObject> pathObj
299299 */
300300 public static List <String > getMeasurementNames (Collection <? extends PathObject > pathObjects ) {
301301 return pathObjects .stream ()
302- .flatMap (p -> p .getMeasurementList ().getMeasurementNames ().stream ())
302+ .flatMap (p -> p .getMeasurementList ().getNames ().stream ())
303303 .distinct ()
304304 .toList ();
305305 }
You can’t perform that action at this time.
0 commit comments