Skip to content

Commit 44854a4

Browse files
committed
ENH: Update CI to v5.2.0.post3
1 parent 87deba0 commit 44854a4

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

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

Lines changed: 11 additions & 11 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: |
@@ -131,13 +131,13 @@ jobs:
131131
shell: cmd
132132

133133
build-linux-python-packages:
134-
runs-on: ubuntu-18.04
134+
runs-on: ubuntu-20.04
135135
strategy:
136136
max-parallel: 2
137137
matrix:
138138
python-version: [36, 37, 38, 39]
139139
include:
140-
- itk-python-git-tag: "v5.2rc03"
140+
- itk-python-git-tag: "v5.2.0.post3"
141141

142142
steps:
143143
- uses: actions/checkout@v2
@@ -173,7 +173,7 @@ jobs:
173173
max-parallel: 2
174174
matrix:
175175
include:
176-
- itk-python-git-tag: "v5.2rc03"
176+
- itk-python-git-tag: "v5.2.0.post3"
177177

178178
steps:
179179
- uses: actions/checkout@v2
@@ -209,7 +209,7 @@ jobs:
209209
matrix:
210210
python-version-minor: [6, 7, 8, 9]
211211
include:
212-
- itk-python-git-tag: "v5.2rc03"
212+
- itk-python-git-tag: "v5.2.0.post3"
213213

214214
steps:
215215
- name: Get specific version of CMake, Ninja
@@ -229,7 +229,7 @@ jobs:
229229
shell: bash
230230
run: |
231231
mv im ../../
232-
cd ../../im
232+
cd ../../
233233
curl -L "https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${{ matrix.itk-python-git-tag }}/ITKPythonBuilds-windows.zip" -o "ITKPythonBuilds-windows.zip"
234234
7z x ITKPythonBuilds-windows.zip -o/c/P -aoa -r
235235
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-morphologicalcontourinterpolation',
16-
version='1.0.1',
16+
version='1.0.2',
1717
author='Dženan Zukić',
1818
author_email='[email protected]',
1919
packages=['itk'],
@@ -49,6 +49,6 @@
4949
keywords='ITK InsightToolkit Segmentation Interpolation-methods',
5050
url=r'https://github.com/KitwareMedical/ITKMorphologicalContourInterpolation',
5151
install_requires=[
52-
r'itk>=5.2rc1'
52+
r'itk>=5.2.0.post3'
5353
]
5454
)

0 commit comments

Comments
 (0)