Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit 4d9cba2

Browse files
tbirdsodzenanz
authored andcommitted
ENH: Bump ITK and change http to https
1 parent 0b6993c commit 4d9cba2

25 files changed

Lines changed: 35 additions & 35 deletions

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

Lines changed: 7 additions & 7 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.3rc03"
16+
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
1717
cmake-build-type: "MinSizeRel"
1818
- os: windows-2019
1919
c-compiler: "cl.exe"
2020
cxx-compiler: "cl.exe"
21-
itk-git-tag: "v5.3rc03"
21+
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
2222
cmake-build-type: "Release"
2323
- os: macos-10.15
2424
c-compiler: "clang"
2525
cxx-compiler: "clang++"
26-
itk-git-tag: "v5.3rc03"
26+
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
@@ -136,7 +136,7 @@ jobs:
136136
matrix:
137137
python-version: [37, 38, 39, 310]
138138
include:
139-
- itk-python-git-tag: "v5.3rc03"
139+
- itk-python-git-tag: "v5.3rc04"
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.3rc03"
175+
- itk-python-git-tag: "v5.3rc04"
176176

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

213213
steps:
214214
- uses: actions/checkout@v2
@@ -238,7 +238,7 @@ jobs:
238238
run: |
239239
cd ../../im
240240
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
241-
set PATH="C:\P\grep;%PATH%"
241+
set PATH=C:\P\grep;%PATH%
242242
set CC=cl.exe
243243
set CXX=cl.exe
244244
C:\Python3${{ matrix.python-version-minor }}-x64\python.exe C:\P\IPP\scripts\windows_build_module_wheels.py --py-envs "3${{ matrix.python-version-minor }}-x64"

LICENSE

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

22
Apache License
33
Version 2.0, January 2004
4-
http://www.apache.org/licenses/
4+
https://www.apache.org/licenses/
55

66
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
77

@@ -193,7 +193,7 @@
193193
you may not use this file except in compliance with the License.
194194
You may obtain a copy of the License at
195195

196-
http://www.apache.org/licenses/LICENSE-2.0
196+
https://www.apache.org/licenses/LICENSE-2.0
197197

198198
Unless required by applicable law or agreed to in writing, software
199199
distributed under the License is distributed on an "AS IS" BASIS,

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ ITKPhaseSymmetry
1414
Overview
1515
--------
1616

17-
This is a module for the `Insight Toolkit (ITK) <http://itk.org>`_ that
17+
This is a module for the `Insight Toolkit (ITK) <https://itk.org>`_ that
1818
provides multi-scale steerable filters for computing phase symmetry (PS).
1919

2020
Multi-scale steerable phase-symmetry filters are applied in the image Fourier
2121
transform domain, and have been shown to be a useful pre-processing measure
2222
for performing image registration and segmentation.
2323

24-
For more information, see the `Insight Journal article <http://hdl.handle.net/10380/3330>`_::
24+
For more information, see the `Insight Journal article <https://hdl.handle.net/10380/3330>`_::
2525

2626
Hatt C.
2727
Multi-scale Steerable Phase-Symmetry Filters for ITK
2828
The Insight Journal. July-December. 2011.
29-
http://hdl.handle.net/10380/3330
30-
http://www.insight-journal.org/browse/publication/846
29+
https://hdl.handle.net/10380/3330
30+
https://www.insight-journal.org/browse/publication/846
3131

3232

3333
Installation

examples/PhaseSymmetryFilter.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

examples/main2.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

examples/main3.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

examples/phase-symmetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# you may not use this file except in compliance with the License.
88
# You may obtain a copy of the License at
99
#
10-
# http://www.apache.org/licenses/LICENSE-2.0.txt
10+
# https://www.apache.org/licenses/LICENSE-2.0.txt
1111
#
1212
# Unless required by applicable law or agreed to in writing, software
1313
# distributed under the License is distributed on an "AS IS" BASIS,

include/itkButterworthFilterFreqImageSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

include/itkButterworthFilterFreqImageSource.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

include/itkLogGaborFreqImageSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)