Skip to content

Commit 1b2e558

Browse files
authored
Merge pull request #419 from thewtex/itk-5.4rc02
ENH: Bump ITK to 5.4 Release Candidate 2
2 parents 112e57e + db481ba commit 1b2e558

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.binder/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
itk>=5.4rc1
1+
itk>=5.4rc2
22
itkwidgets[lab,notebook]>=1.0a7
33
matplotlib

.github/workflows/build-test-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build, test, publish
33
on: [push,pull_request]
44

55
env:
6-
itk-git-tag: "v5.4rc01"
6+
itk-git-tag: "v5.4rc02"
77

88
jobs:
99
build-test-cxx:
@@ -242,7 +242,7 @@ jobs:
242242
run: |
243243
python -m pip install --upgrade pip
244244
python -m pip install ninja
245-
python -m pip install itk>=5.4rc1
245+
python -m pip install itk>=5.4rc2
246246
python -m pip install matplotlib
247247
python -m pip install itkwidgets
248248
# Issues with 5.7.0

Superbuild/External-ITK.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Get and build itk
33

44
if(NOT ITK_TAG)
5-
# ITK release 2023-06-20
6-
set(ITK_TAG "v5.4rc01")
5+
# ITK release 2023-10-10
6+
set(ITK_TAG "v5.4rc02")
77
endif()
88

99
set(_vtk_args)

Superbuild/External-Python.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ ExternalProject_Add(ITKPython
1717
DOWNLOAD_COMMAND ""
1818
CONFIGURE_COMMAND ${PYTHON_EXECUTABLE} -m venv "${_itk_venv}"
1919
BUILD_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --upgrade pip
20-
INSTALL_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --ignore-installed itk>=5.4rc1 sphinx==4.4.0 docutils<0.18 traitlets==5.6.0 six black nbsphinx ipywidgets sphinx-contributors ipykernel matplotlib itkwidgets[lab,notebook]>=1.0a21 pydata-sphinx-theme
20+
INSTALL_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --ignore-installed itk>=5.4rc2 sphinx==4.4.0 docutils<0.18 traitlets==5.6.0 six black nbsphinx ipywidgets sphinx-contributors ipykernel matplotlib itkwidgets[lab,notebook]>=1.0a21 pydata-sphinx-theme
2121
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/ITKBlackConfig.cmake
2222
)

src/Filtering/LabelMap/ConvertImageWithLabelsToShapeLabelMap/CMakeLists.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,10 @@ install(FILES Code.cxx CMakeLists.txt
2121

2222

2323
enable_testing()
24-
add_test(NAME ConvertImageWithLabelsToShapeLabelMapTest
25-
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${PROJECT_NAME})
24+
# Windows failures tracked: https://github.com/InsightSoftwareConsortium/ITKSphinxExamples/issues/420
25+
if (NOT WIN32)
26+
add_test(NAME ConvertImageWithLabelsToShapeLabelMapTest
27+
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${PROJECT_NAME})
28+
set_tests_properties(ConvertImageWithLabelsToShapeLabelMapTest
29+
PROPERTIES PASS_REGULAR_EXPRESSION "There are 2 objects.")
30+
endif()

0 commit comments

Comments
 (0)