Skip to content

Commit 502a2f8

Browse files
authored
Merge pull request #223 from thewtex/itk-5.2rc03
ENH: Upgrade to ITK 5.2 RC 3
2 parents 757d842 + 227eeff commit 502a2f8

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
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.2rc2
1+
itk>=5.2rc3
22
itkwidgets
33
matplotlib

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
- os: ubuntu-18.04
1414
c-compiler: "gcc"
1515
cxx-compiler: "g++"
16-
itk-git-tag: "v5.2rc02"
16+
itk-git-tag: "v5.2rc03"
1717
cmake-build-type: "MinSizeRel"
1818
- os: windows-2019
1919
c-compiler: "cl.exe"
2020
cxx-compiler: "cl.exe"
21-
itk-git-tag: "v5.2rc02"
21+
itk-git-tag: "v5.2rc03"
2222
cmake-build-type: "Release"
2323
- os: macos-10.15
2424
c-compiler: "clang"
2525
cxx-compiler: "clang++"
26-
itk-git-tag: "v5.2rc02"
26+
itk-git-tag: "v5.2rc03"
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
@@ -132,17 +132,17 @@ jobs:
132132
- os: ubuntu-18.04
133133
c-compiler: "gcc"
134134
cxx-compiler: "g++"
135-
itk-git-tag: "v5.2rc02"
135+
itk-git-tag: "v5.2rc03"
136136
cmake-build-type: "MinSizeRel"
137137
- os: windows-2019
138138
c-compiler: "cl.exe"
139139
cxx-compiler: "cl.exe"
140-
itk-git-tag: "v5.2rc02"
140+
itk-git-tag: "v5.2rc03"
141141
cmake-build-type: "Release"
142142
- os: macos-10.15
143143
c-compiler: "clang"
144144
cxx-compiler: "clang++"
145-
itk-git-tag: "v5.2rc02"
145+
itk-git-tag: "v5.2rc03"
146146
cmake-build-type: "MinSizeRel"
147147

148148
steps:
@@ -157,7 +157,7 @@ jobs:
157157
run: |
158158
python -m pip install --upgrade pip
159159
python -m pip install ninja
160-
python -m pip install itk==5.2rc02
160+
python -m pip install itk==5.2rc03
161161
162162
- name: Get specific version of CMake, Ninja
163163
uses: lukka/get-cmake@v3.18.3
@@ -260,17 +260,17 @@ jobs:
260260
- os: ubuntu-18.04
261261
c-compiler: "gcc"
262262
cxx-compiler: "g++"
263-
itk-git-tag: "v5.2rc02"
263+
itk-git-tag: "v5.2rc03"
264264
cmake-build-type: "MinSizeRel"
265265
- os: windows-2019
266266
c-compiler: "cl.exe"
267267
cxx-compiler: "cl.exe"
268-
itk-git-tag: "v5.2rc02"
268+
itk-git-tag: "v5.2rc03"
269269
cmake-build-type: "Release"
270270
- os: macos-10.15
271271
c-compiler: "clang"
272272
cxx-compiler: "clang++"
273-
itk-git-tag: "v5.2rc02"
273+
itk-git-tag: "v5.2rc03"
274274
cmake-build-type: "MinSizeRel"
275275

276276
steps:
@@ -284,7 +284,7 @@ jobs:
284284
run: |
285285
python -m pip install --upgrade pip
286286
python -m pip install ninja
287-
python -m pip install itk==5.2rc02
287+
python -m pip install itk==5.2rc03
288288
python -m pip install matplotlib
289289
python -m pip install itkwidgets
290290
@@ -301,7 +301,7 @@ jobs:
301301
- os: ubuntu-18.04
302302
c-compiler: "gcc"
303303
cxx-compiler: "g++"
304-
itk-git-tag: "v5.2rc02"
304+
itk-git-tag: "v5.2rc03"
305305
cmake-build-type: "Release"
306306

307307
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.2rc02")
5+
set(ITK_TAG "v5.2rc03")
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
@@ -13,5 +13,5 @@ ExternalProject_Add(ITKPython
1313
DOWNLOAD_COMMAND ""
1414
CONFIGURE_COMMAND ${PYTHON_EXECUTABLE} -m venv "${_itk_venv}"
1515
BUILD_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --upgrade pip
16-
INSTALL_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --ignore-installed itk>=5.2rc2 sphinx==3.0.4 six
16+
INSTALL_COMMAND ${ITKPYTHON_EXECUTABLE} -m pip install --ignore-installed itk>=5.2rc3 sphinx==3.0.4 six
1717
)

0 commit comments

Comments
 (0)