Skip to content

Commit ec84fe6

Browse files
authored
Merge pull request #50 from InsightSoftwareConsortium/update-pyproject-and-workflows
COMP: Update RemoteModulePackageAction and Python 3.10+
2 parents 68286ed + 7cbd83b commit ec84fe6

10 files changed

+18
-16
lines changed

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

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

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

99
python-build-workflow:
10-
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0
10+
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.5
1111
with:
1212
test-notebooks: false
1313
secrets:

.github/workflows/clang-format-linter.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v1
10+
- uses: actions/checkout@v5
11+
12+
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@main
1113
with:
12-
fetch-depth: 1
13-
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master
14+
itk-branch: main

include/itkMorphologicalSharpeningImageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define itkMorphologicalSharpeningImageFilter_h
2020

2121
#include "itkImageToImageFilter.h"
22-
//#include "itkProgressReporter.h"
22+
// #include "itkProgressReporter.h"
2323
#include "itkCastImageFilter.h"
2424
#include "itkParabolicErodeImageFilter.h"
2525
#include "itkParabolicDilateImageFilter.h"

include/itkParabolicErodeDilateImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "itkImageRegionConstIterator.h"
2222
#include "itkImageRegionIterator.h"
2323

24-
//#define NOINDEX
24+
// #define NOINDEX
2525
#ifndef NOINDEX
2626
# include "itkImageLinearIteratorWithIndex.h"
2727
# include "itkImageLinearConstIteratorWithIndex.h"

include/itkParabolicOpenCloseImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "itkImageRegionConstIterator.h"
2222
#include "itkImageRegionIterator.h"
2323

24-
//#define NOINDEX
24+
// #define NOINDEX
2525
#ifndef NOINDEX
2626
# include "itkImageLinearIteratorWithIndex.h"
2727
# include "itkImageLinearConstIteratorWithIndex.h"

oldtests/perfDT.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "itkChangeInformationImageFilter.h"
77
#include "itkSignedMaurerDistanceMapImageFilter.h"
88

9-
//#include "plotutils.h"
9+
// #include "plotutils.h"
1010
#include "ioutils.h"
1111

1212
#include "itkBinaryThresholdImageFilter.h"

oldtests/perfDT3D.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
#include "itkSimpleFilterWatcher.h"
66
#include "itkChangeInformationImageFilter.h"
77

8-
//#include "plotutils.h"
8+
// #include "plotutils.h"
99
#include "ioutils.h"
1010

1111
#include "itkBinaryThresholdImageFilter.h"
1212
#include "itkMorphologicalSignedDistanceTransformImageFilter.h"
13-
//#include "itkMorphologicalDistanceTransformImageFilter.h"
13+
// #include "itkMorphologicalDistanceTransformImageFilter.h"
1414
#include "itkSignedMaurerDistanceMapImageFilter.h"
1515

1616
#include "itkDanielssonDistanceMapImageFilter.h"

oldtests/testDistTrans.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "itkSimpleFilterWatcher.h"
77

88
#include "itkMorphologicalSignedDistanceTransformImageFilter.h"
9-
//#include "itkMorphologicalDistanceTransformImageFilter.h"
9+
// #include "itkMorphologicalDistanceTransformImageFilter.h"
1010
#include "itkSignedMaurerDistanceMapImageFilter.h"
1111
#include "itkSubtractImageFilter.h"
1212

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "itk-parabolicmorphology"
7-
version = "1.3.1"
7+
version = "1.3.2"
88
description = "itk-parabolicmorphology provides mathematical morphological erosion and dilation filters using parabolic structuring functions."
99
readme = "README.rst"
1010
license = {file = "LICENSE"}
@@ -13,6 +13,7 @@ authors = [
1313
]
1414
keywords = [
1515
"itk",
16+
"InsightToolkit",
1617
]
1718
classifiers = [
1819
"Development Status :: 4 - Beta",
@@ -33,7 +34,7 @@ classifiers = [
3334
"Topic :: Scientific/Engineering :: Medical Science Apps.",
3435
"Topic :: Software Development :: Libraries",
3536
]
36-
requires-python = ">=3.8"
37+
requires-python = ">=3.10"
3738
dependencies = [
3839
"itk == 5.4.*",
3940
]
@@ -46,7 +47,7 @@ Homepage = "https://github.com/InsightSoftwareConsortium/ITKParabolicMorphology"
4647
# The versions of CMake to allow. If CMake is not present on the system or does
4748
# not pass this specifier, it will be downloaded via PyPI if possible. An empty
4849
# string will disable this check.
49-
cmake.version = ">=3.16.3"
50+
cmake.version = ">=3.22.1"
5051

5152
# A list of args to pass to CMake when configuring the project. Setting this in
5253
# config or envvar will override toml. See also ``cmake.define``.

test/itkParaSharpenTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "itkCommand.h"
2222
#include "itkSimpleFilterWatcher.h"
2323

24-
//#include "plotutils.h"
24+
// #include "plotutils.h"
2525

2626
#include "itkGrayscaleDilateImageFilter.h"
2727
#include "itkBinaryBallStructuringElement.h"

0 commit comments

Comments
 (0)