Skip to content

Commit 2bbd801

Browse files
thewtexdzenanz
authored andcommitted
ENH: Update to ITK 5.2.0
1 parent c34a4c4 commit 2bbd801

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

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

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

2929
steps:
3030
- uses: actions/checkout@v1
3131

32-
- name: Set up Python 3.7
33-
uses: actions/setup-python@v1
32+
- name: Set up Python 3.8
33+
uses: actions/setup-python@v2
3434
with:
35-
python-version: 3.7
35+
python-version: 3.8
3636

3737
- name: Install build dependencies
3838
run: |
@@ -136,7 +136,7 @@ jobs:
136136
matrix:
137137
python-version: [36, 37, 38, 39]
138138
include:
139-
- itk-python-git-tag: "v5.2rc03"
139+
- itk-python-git-tag: "v5.2.0"
140140

141141
steps:
142142
- uses: actions/checkout@v2
@@ -172,7 +172,7 @@ jobs:
172172
max-parallel: 2
173173
matrix:
174174
include:
175-
- itk-python-git-tag: "v5.2rc03"
175+
- itk-python-git-tag: "v5.2.0"
176176

177177
steps:
178178
- uses: actions/checkout@v2
@@ -208,7 +208,7 @@ jobs:
208208
matrix:
209209
python-version-minor: [6, 7, 8, 9]
210210
include:
211-
- itk-python-git-tag: "v5.2rc03"
211+
- itk-python-git-tag: "v5.2.0"
212212

213213
steps:
214214
- name: Get specific version of CMake, Ninja
@@ -228,7 +228,7 @@ jobs:
228228
shell: bash
229229
run: |
230230
mv im ../../
231-
cd ../../
231+
cd ../../im
232232
curl -L "https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${{ matrix.itk-python-git-tag }}/ITKPythonBuilds-windows.zip" -o "ITKPythonBuilds-windows.zip"
233233
7z x ITKPythonBuilds-windows.zip -o/c/P -aoa -r
234234
curl -L "https://data.kitware.com/api/v1/file/5c0ad59d8d777f2179dd3e9c/download" -o "doxygen-1.8.11.windows.bin.zip"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='itk-meshtopolydata',
16-
version='0.6.5',
16+
version='0.7.0',
1717
author='Insight Software Consortium',
1818
author_email='[email protected]',
1919
packages=['itk'],
@@ -44,7 +44,7 @@
4444
keywords='ITK InsightToolkit',
4545
url=r'https://itk.org/',
4646
install_requires=[
47-
r'itk-core>=5.2rc03',
47+
r'itk-core>=5.2.0',
4848
r'numpy',
4949
]
5050
)

0 commit comments

Comments
 (0)