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

Commit a983b19

Browse files
authored
Merge pull request #51 from InsightSoftwareConsortium/update-ci-v5.4.6
COMP: Update ITKRemoteModuleBuildTestPackageAction to v5.4.6
2 parents ec84fe6 + b6813db commit a983b19

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on: [push,pull_request]
44

55
jobs:
66
cxx-build-workflow:
7-
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.5
7+
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.6
88

99
python-build-workflow:
10-
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.5
10+
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.6
1111
with:
12+
itk-wheel-tag: 'v5.4.5'
13+
itk-python-package-tag: 'v5.4.5'
1214
test-notebooks: false
1315
secrets:
1416
pypi_password: ${{ secrets.pypi_password }}

include/itkParabolicErodeDilateImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ ParabolicErodeDilateImageFilter<TInputImage, doDilate, TOutputImage>::GenerateDa
164164
typename ImageSource<OutputImageType>::ThreadStruct str;
165165
str.Filter = this;
166166

167-
ProcessObject::MultiThreaderType * multithreader = this->GetMultiThreader();
167+
itk::MultiThreaderBase * multithreader = this->GetMultiThreader();
168168
multithreader->SetNumberOfWorkUnits(nbthreads);
169169
multithreader->SetSingleMethod(this->ThreaderCallback, &str);
170170

include/itkParabolicOpenCloseImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ ParabolicOpenCloseImageFilter<TInputImage, DoOpen, TOutputImage>::GenerateData()
176176
typename ImageSource<OutputImageType>::ThreadStruct str;
177177
str.Filter = this;
178178

179-
ProcessObject::MultiThreaderType * multithreader = this->GetMultiThreader();
179+
itk::MultiThreaderBase * multithreader = this->GetMultiThreader();
180180
multithreader->SetNumberOfWorkUnits(nbthreads);
181181
multithreader->SetSingleMethod(this->ThreaderCallback, &str);
182182

0 commit comments

Comments
 (0)