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

Commit 2c6aa18

Browse files
tbirdsodzenanz
authored andcommitted
ENH: Bump ITK and replace http with https using script
1 parent 18d15de commit 2c6aa18

47 files changed

Lines changed: 83 additions & 83 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.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:
@@ -134,9 +134,9 @@ jobs:
134134
strategy:
135135
max-parallel: 2
136136
matrix:
137-
python-version: [36, 37, 38, 39]
137+
python-version: [37, 38, 39, 310]
138138
include:
139-
- itk-python-git-tag: "v5.2rc01"
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.2rc01"
175+
- itk-python-git-tag: "v5.3rc04"
176176

177177
steps:
178178
- uses: actions/checkout@v2
@@ -206,9 +206,9 @@ jobs:
206206
strategy:
207207
max-parallel: 2
208208
matrix:
209-
python-version-minor: [6, 7, 8, 9]
209+
python-version-minor: [7, 8, 9, 10]
210210
include:
211-
- itk-python-git-tag: "v5.2rc01"
211+
- itk-python-git-tag: "v5.3rc04"
212212

213213
steps:
214214
- name: Get specific version of CMake, Ninja
@@ -241,7 +241,7 @@ jobs:
241241
run: |
242242
cd ../../im
243243
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
244-
set PATH="C:\P\grep;%PATH%"
244+
set PATH=C:\P\grep;%PATH%
245245
set CC=cl.exe
246246
set CXX=cl.exe
247247
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,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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ ITK classes for mathematical morphology using parabolic structuring functions.
2020
Parabolic functions can be used to build fast distance transforms, and binary
2121
morphology using spheres.
2222

23-
For more information, see the `Insight Journal article <http://hdl.handle.net/1926/1370>`_::
23+
For more information, see the `Insight Journal article <https://hdl.handle.net/1926/1370>`_::
2424

2525
Beare R.
2626
Morphology with parabolic structuring elements
2727
The Insight Journal. January-June. 2008.
28-
http://hdl.handle.net/1926/1370
29-
http://www.insight-journal.org/browse/publication/228
28+
https://hdl.handle.net/1926/1370
29+
https://www.insight-journal.org/browse/publication/228
3030

3131
Installation
3232
------------

doc/Article.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
% of the standard documentation for Insight. It may be found online
55
% at:
66
%
7-
% http://www.itk.org/
7+
% https://www.itk.org/
88

99
\documentclass{InsightArticle}
1010

doc/InsightArticle.cls

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

7272
% Define command to make reference to on-line Doxygen documentation
7373
\newcommand{\doxygen}[1]{
74-
\href{http://www.itk.org/Doxygen/html/classitk_1_1#1.html}{\code{itk::#1}}}
74+
\href{https://www.itk.org/Doxygen/html/classitk_1_1#1.html}{\code{itk::#1}}}
7575

7676
% Define command to make reference to on-line Doxygen documentation
7777
\newcommand{\subdoxygen}[2]{
78-
\href{http://www.itk.org/Doxygen/html/classitk_1_1#1_1_1#2.html}{\code{itk::#1::#2}}}
78+
\href{https://www.itk.org/Doxygen/html/classitk_1_1#1_1_1#2.html}{\code{itk::#1::#2}}}
7979

8080
% Define command for the standard comment introducing classes with similar functionalities
8181
\newcommand{\relatedClasses}{

doc/InsightJournal.bib

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ @InProceedings{Whitaker1994c
3535

3636
@Manual{POVRay,
3737
Title = "Persistence of Vision, Ray-Tracer",
38-
Address = "http://www.povray.org",
38+
Address = "https://www.povray.org",
3939
}
4040

4141
@Book{Romeny1994,
@@ -55,7 +55,7 @@ @Book{ToErrIsHuman2001
5555
@TechReport{Aisemberg,
5656
Author = "G.O. Aisemberg",
5757
Title = "Vertebrate embryology",
58-
Address = "http://lcw.lehman.edu/lehman/depts/biology/aisemberg/Bio268.html",
58+
Address = "https://lcw.lehman.edu/lehman/depts/biology/aisemberg/Bio268.html",
5959
Institution = "Department of Biological Sciences. Lehman College,
6060
City University of New York",
6161
year = 1998,
@@ -758,7 +758,7 @@ @TechReport{Culver1999
758758
Title = "Intrinsic scale for boundary representation of
759759
two-dimensional objects",
760760
Institution = "MIDAG, University of North Carolina at Chapel Hill",
761-
annote = "http://www.cs.unc.edu/~culver",
761+
annote = "https://www.cs.unc.edu/~culver",
762762
year = 1999,
763763
}
764764

@@ -832,7 +832,7 @@ @TechReport{Deriche1993
832832
@Book{Darwin1999,
833833
Author = "C. Darwin",
834834
Title = "On the Origin of Species",
835-
Publisher = "http://www.gutenberg.org",
835+
Publisher = "https://www.gutenberg.org",
836836
Edition = "sixth",
837837
year = 1999,
838838
}
@@ -1796,7 +1796,7 @@ @Manual{ITKSoftwareGuide
17961796
Title = {The {ITK} {S}oftware {G}uide},
17971797
Author = {Ibanez, L. and Schroeder, W.},
17981798
Organization = "Kitware, Inc. ISBN 1-930934-10-6",
1799-
Address = {http://www.itk.org/ItkSoftwareGuide.pdf},
1799+
Address = {https://www.itk.org/ItkSoftwareGuide.pdf},
18001800
year = 2003,
18011801
}
18021802

@@ -3454,7 +3454,7 @@ @Manual{OpenGLSpecification
34543454
Title = "The OpenGL Graphics System: A Specification (Version
34553455
1.2)",
34563456
Author = "M. Segal and K. Akeley",
3457-
Address = "http://www.opengl.org",
3457+
Address = "https://www.opengl.org",
34583458
month = "march",
34593459
year = 1998,
34603460
}
@@ -3872,7 +3872,7 @@ @TechReport{Udupa1998
38723872
Author = "J. K. Udupa and S. Samarasekera",
38733873
Title = "Extraction of fuzzy object information in multidimensional images for quantifying MS lesions of the brain",
38743874
year = 1998,
3875-
Institution = "United States Patent Office http://www.uspto.gov",
3875+
Institution = "United States Patent Office https://www.uspto.gov",
38763876
Number = "5,812,691"
38773877
}
38783878

@@ -4767,7 +4767,7 @@ @Manual{CreatisINSA-Lyon
47674767
Title = "The GDCM Library",
47684768
Institution = "CREATIS (France)",
47694769
Organization = "CNRS, INSERM, INSA Lyon, UCB Lyon",
4770-
Address = "http://www-creatis.insa-lyon.fr/Public/Gdcm/"
4770+
Address = "https://www.creatis.insa-lyon.fr/Public/Gdcm/"
47714771
}
47724772

47734773
@InProceedings{Chung2002,

doc/local.bib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ @article{Schavemaker2000
1919
number = {6},
2020
year = {2000},
2121
pages = {997-1012},
22-
ee = {http://dx.doi.org/10.1016/S0031-3203(99)00160-0},
23-
bibsource = {DBLP, http://dblp.uni-trier.de}
22+
ee = {https://dx.doi.org/10.1016/S0031-3203(99)00160-0},
23+
bibsource = {DBLP, https://dblp.uni-trier.de}
2424
}

include/itkBinaryCloseParaImageFilter.h

Lines changed: 2 additions & 2 deletions
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,
@@ -55,7 +55,7 @@ namespace itk
5555
* Core methods described in the InsightJournal article:
5656
* "Morphology with parabolic structuring elements"
5757
*
58-
* http://hdl.handle.net/1926/1370
58+
* https://hdl.handle.net/1926/1370
5959
*
6060
* \sa itkParabolicErodeImageFilter
6161
*

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

0 commit comments

Comments
 (0)