Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ on:

jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.0
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.2

python-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.2
secrets:
pypi_password: ${{ secrets.pypi_password }}
2 changes: 1 addition & 1 deletion include/itkCuberilleImageToMeshFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class CuberilleImageToMeshFilter : public ImageToMeshFilter<TInputImage, TOutput
void
GenerateData() override;
void
GenerateOutputInformation() override{}; // do nothing
GenerateOutputInformation() override {}; // do nothing

private:
/** \class VertexLookupNode A private class containing lookup details for vertices.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"itk-io == 5.4.*",
"numpy",
Expand Down
2 changes: 1 addition & 1 deletion test/CuberilleTest01.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ CuberilleTest01Helper(int argc, char * argv[])
cuberille->SetIsoSurfaceValue(isoSurfaceValue);
ITK_TEST_SET_GET_VALUE(isoSurfaceValue, cuberille->GetIsoSurfaceValue());

const auto interpolator = InterpolatorType::New();
const auto interpolator = InterpolatorType::New();
# if USE_BSPLINE_INTERPOLATOR
unsigned int splineOrder = 3;
interpolator->SetSplineOrder(splineOrder);
Expand Down
Loading