Skip to content

Commit 50d60aa

Browse files
committed
ENH: Bump ITK version
1 parent 2d8514b commit 50d60aa

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Build, test, publish
22

33
on: [push,pull_request]
44

5+
env:
6+
itk-git-tag: "e801e637634d1cdf050b358299fd7b3771418f2e"
7+
58
jobs:
69
build-test-cxx:
710
runs-on: ${{ matrix.os }}
@@ -13,17 +16,14 @@ jobs:
1316
- os: ubuntu-18.04
1417
c-compiler: "gcc"
1518
cxx-compiler: "g++"
16-
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
1719
cmake-build-type: "MinSizeRel"
1820
- os: windows-2019
1921
c-compiler: "cl.exe"
2022
cxx-compiler: "cl.exe"
21-
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
2223
cmake-build-type: "Release"
2324
- os: macos-10.15
2425
c-compiler: "clang"
2526
cxx-compiler: "clang++"
26-
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
@@ -49,7 +49,7 @@ jobs:
4949
cd ..
5050
git clone https://github.com/InsightSoftwareConsortium/ITK.git
5151
cd ITK
52-
git checkout ${{ matrix.itk-git-tag }}
52+
git checkout ${{ env.itk-git-tag }}
5353
5454
- name: Build ITK
5555
if: matrix.os != 'windows-2019'
@@ -259,7 +259,6 @@ jobs:
259259
- os: ubuntu-18.04
260260
c-compiler: "gcc"
261261
cxx-compiler: "g++"
262-
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
263262
cmake-build-type: "Release"
264263

265264
steps:

Superbuild/External-ITK.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Get and build itk
33

44
if(NOT ITK_TAG)
5-
set(ITK_TAG "v5.3rc03")
5+
set(ITK_TAG "e801e637634d1cdf050b358299fd7b3771418f2e")
66
endif()
77

88
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.3rc3 sphinx==4.4.0 docutils<0.18 six black nbsphinx ipython sphinx-contributors
20+
INSTALL_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --ignore-installed itk>=5.3rc4 sphinx==4.4.0 docutils<0.18 six black nbsphinx ipython sphinx-contributors
2121
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/ITKBlackConfig.cmake
2222
)

0 commit comments

Comments
 (0)