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

Commit a01fae4

Browse files
tbirdsodzenanz
authored andcommitted
ENH: Bump ITK and replace http with https using script
1 parent 95cf585 commit a01fae4

11 files changed

Lines changed: 22 additions & 22 deletions

.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:
@@ -131,9 +131,9 @@ jobs:
131131
strategy:
132132
max-parallel: 2
133133
matrix:
134-
python-version: [36, 37, 38, 39]
134+
python-version: [37, 38, 39, 310]
135135
include:
136-
- itk-python-git-tag: "v5.1.1.post1"
136+
- itk-python-git-tag: "v5.3rc04"
137137

138138
steps:
139139
- uses: actions/checkout@v2
@@ -169,7 +169,7 @@ jobs:
169169
max-parallel: 2
170170
matrix:
171171
include:
172-
- itk-python-git-tag: "v5.1.1.post1"
172+
- itk-python-git-tag: "v5.3rc04"
173173

174174
steps:
175175
- uses: actions/checkout@v2
@@ -196,9 +196,9 @@ jobs:
196196
strategy:
197197
max-parallel: 2
198198
matrix:
199-
python-version-minor: [6, 7, 8, 9]
199+
python-version-minor: [7, 8, 9, 10]
200200
include:
201-
- itk-python-git-tag: "v5.1.1.post1"
201+
- itk-python-git-tag: "v5.3rc04"
202202

203203
steps:
204204
- uses: actions/checkout@v2
@@ -228,7 +228,7 @@ jobs:
228228
run: |
229229
cd ../../im
230230
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
231-
set PATH="C:\P\grep;%PATH%"
231+
set PATH=C:\P\grep;%PATH%
232232
set CC=cl.exe
233233
set CXX=cl.exe
234234
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" --no-cleanup

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Apache License
22
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
3+
https://www.apache.org/licenses/
44

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

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

195-
http://www.apache.org/licenses/LICENSE-2.0
195+
https://www.apache.org/licenses/LICENSE-2.0
196196

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

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ Overview
1919
This module contains classes to perturb ``itk::Mesh`` and ``itk::QuadEdgeMesh``
2020
objects with Gaussian noise.
2121

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

2424
Vigneault D.
2525
Perturbing Mesh Vertices with Additive Gaussian Noise
2626
The Insight Journal. January-December. 2016.
27-
http://hdl.handle.net/10380/3567
28-
http://www.insight-journal.org/browse/publication/981
27+
https://hdl.handle.net/10380/3567
28+
https://www.insight-journal.org/browse/publication/981

include/itkAdditiveGaussianNoiseMeshFilter.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/itkAdditiveGaussianNoiseMeshFilter.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/itkAdditiveGaussianNoiseQuadEdgeMeshFilter.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/itkAdditiveGaussianNoiseQuadEdgeMeshFilter.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
@@ -25,7 +25,7 @@
2525
'Please refer to:\n'
2626
'Vigneault D., '
2727
'"Perturbing Mesh Vertices with Additive Gaussian Noise", '
28-
'Insight Journal, January-December 2016, http://hdl.handle.net/10380/3567.',
28+
'Insight Journal, January-December 2016, https://hdl.handle.net/10380/3567.',
2929
classifiers=[
3030
"License :: OSI Approved :: Apache Software License",
3131
"Programming Language :: Python",

test/itkAdditiveGaussianNoiseMeshFilterTest.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)