From 7a691e8cdce8f81c981849b2002e99b7411fa10e Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Tue, 11 Nov 2025 17:19:18 -0600 Subject: [PATCH 1/2] COMP: Update RemoteModulePackageAction and Python 3.10+ Update github actions to v5.4.5 and package management for python 3.10 - Bump ITKRemoteModuleBuildTestPackageAction from v5.4.4 to v5.4.5 - Update clang-format linter from @master to @main with itk-branch: main - Update actions/checkout from v1 to v5 - Update minimum Python from 3.8 to 3.10 --- .github/workflows/build-test-package.yml | 4 ++-- .github/workflows/clang-format-linter.yml | 7 ++++--- pyproject.toml | 6 +++--- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 18758d6..5741517 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -5,10 +5,10 @@ on: [push,pull_request] jobs: cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.4 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.5 python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.4 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.5 with: test-notebooks: false secrets: diff --git a/.github/workflows/clang-format-linter.yml b/.github/workflows/clang-format-linter.yml index 69166d9..7d1df4f 100644 --- a/.github/workflows/clang-format-linter.yml +++ b/.github/workflows/clang-format-linter.yml @@ -7,7 +7,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v5 + + - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@main with: - fetch-depth: 1 - - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master + itk-branch: main diff --git a/pyproject.toml b/pyproject.toml index 4fda2e3..4e097ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "itk-skullstripping" -version = "1.0.1" +version = "1.0.2" description = "Automatic skull-stripping for neuroimage analysis" readme = "README.rst" license = {file = "LICENSE"} @@ -36,7 +36,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Medical Science Apps.", "Topic :: Software Development :: Libraries", ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "itk == 5.4.*", ] @@ -49,7 +49,7 @@ Homepage = "https://github.com/InsightSoftwareConsortium/ITKSkullStrip" # The versions of CMake to allow. If CMake is not present on the system or does # not pass this specifier, it will be downloaded via PyPI if possible. An empty # string will disable this check. -cmake.version = ">=3.16.3" +cmake.version = ">=3.22.1" # A list of args to pass to CMake when configuring the project. Setting this in # config or envvar will override toml. See also ``cmake.define``. From 21448ba5bfe0c6d4c5162608c246c5d09dded9f2 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Thu, 2 Apr 2026 06:37:50 -0500 Subject: [PATCH 2/2] WIP: Test GHCR mirror pre-pull for dockcross images Temporarily point python-build-workflow at the ghcr-mirror-dockcross-images branch of ITKRemoteModuleBuildTestPackageAction to test the pre-pull step with GHCR fallback logic. See: https://github.com/InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/pull/124 --- .github/workflows/build-test-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 5741517..595079d 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -8,7 +8,7 @@ jobs: uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.5 python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.5 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@ghcr-mirror-dockcross-images with: test-notebooks: false secrets: