From 39415a88f8d32aa4532f31f4256d906ea4041e98 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Tue, 11 Nov 2025 17:21:51 -0600 Subject: [PATCH 1/2] COMP: Update RemoteModulePackageAction and Python 3.10+ Update github actions to v5.4.4 and package management for python 3.10 --- .github/workflows/build-test-package.yml | 4 ++-- pyproject.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 9e3181d..7d0039b 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -4,9 +4,9 @@ on: [push,pull_request] jobs: cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v6.0b01 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.6 python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v6.0b01 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.6 secrets: pypi_password: ${{ secrets.pypi_password }} diff --git a/pyproject.toml b/pyproject.toml index 6349d7f..27947d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "itk-totalvariation" -version = "1.0.2" +version = "1.0.3" description = "TotalVariation algorithms, providing a wrap for the external project: https://github.com/albarji/proxTV" readme = "README.rst" license = {file = "LICENSE"} @@ -34,7 +34,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Medical Science Apps.", "Topic :: Software Development :: Libraries", ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "itk == 5.4.*", ] @@ -47,7 +47,7 @@ Homepage = "https://github.com/InsightSoftwareConsortium/ITKTotalVariation" # 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 a439d6b53411e061723d1d456a81cba73fe96166 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Thu, 2 Apr 2026 21:47:50 -0500 Subject: [PATCH 2/2] COMP: Pin ITK wheel build to v5.4.5 for Python packaging --- .github/workflows/build-test-package.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 7d0039b..0dcbde2 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -8,5 +8,6 @@ jobs: python-build-workflow: uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.6 + with: secrets: pypi_password: ${{ secrets.pypi_password }}