Skip to content

Commit e38e8a3

Browse files
tbirdsodzenanz
authored andcommitted
ENH: Bump ITK and replace http with https using script
1 parent b540bb4 commit e38e8a3

9 files changed

+19
-19
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## See: https://clang.llvm.org/docs/ClangFormatStyleOptions.html for details of each option
55
##
66
## The clang-format binaries can be downloaded as part of the clang binary distributions
7-
## from http://releases.llvm.org/download.html
7+
## from https://releases.llvm.org/download.html
88
##
99
## Use the script Utilities/Maintenance/clang-format.bash to faciliate
1010
## maintaining a consistent code style.

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

Lines changed: 9 additions & 9 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: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
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: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
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: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
26+
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
@@ -135,9 +135,9 @@ jobs:
135135
strategy:
136136
max-parallel: 2
137137
matrix:
138-
python-version: [36, 37, 38, 39]
138+
python-version: [37, 38, 39, 310]
139139
include:
140-
- itk-python-git-tag: "v5.2rc01"
140+
- itk-python-git-tag: "v5.3rc04"
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.2rc01"
176+
- itk-python-git-tag: "v5.3rc04"
177177

178178
steps:
179179
- uses: actions/checkout@v2
@@ -207,9 +207,9 @@ jobs:
207207
strategy:
208208
max-parallel: 2
209209
matrix:
210-
python-version-minor: [6, 7, 8, 9]
210+
python-version-minor: [7, 8, 9, 10]
211211
include:
212-
- itk-python-git-tag: "v5.2rc01"
212+
- itk-python-git-tag: "v5.3rc04"
213213

214214
steps:
215215
- name: Get specific version of CMake, Ninja
@@ -242,7 +242,7 @@ jobs:
242242
run: |
243243
cd ../../im
244244
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
245-
set PATH="C:\P\grep;%PATH%"
245+
set PATH=C:\P\grep;%PATH%
246246
set CC=cl.exe
247247
set CXX=cl.exe
248248
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ The FixedPointInverseDisplacementFieldImageFilter has been implemented and descr
1717

1818
Luethi M.
1919
"Inverting Displacement fields using a fixed point iteration scheme."
20-
http://hdl.handle.net/10380/3222
21-
http://www.insight-journal.org/browse/publication/768
20+
https://hdl.handle.net/10380/3222
21+
https://www.insight-journal.org/browse/publication/768
2222
October 2010.
2323

2424
Since ITK 4.10.0, this module is available in the ITK source tree as a Remote

examples/InvertDisplacementField.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,

include/itkFixedPointInverseDisplacementFieldImageFilter.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/itkFixedPointInverseDisplacementFieldImageFilter.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,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'fixed-point approach.\n'
2727
'Please refer to:\n'
2828
'M. Luethi, "Inverting deformation fields using a fixed point iteration scheme.", '
29-
'Insight Journal, July-December 2010, http://hdl.handle.net/10380/3222.',
29+
'Insight Journal, July-December 2010, https://hdl.handle.net/10380/3222.',
3030
classifiers=[
3131
"License :: OSI Approved :: Apache Software License",
3232
"Programming Language :: Python",

test/FixedPointInverseDisplacementFieldTest.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,

0 commit comments

Comments
 (0)