From 0e7a4bf9b26b69fb7040a3b712768cbc748a2631 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Tue, 11 Nov 2025 17:02:44 -0600 Subject: [PATCH] COMP: Update RemoteModulePackageAction and Python 3.9+ Update github actions to v5.4.4 and package management for python 3.9 --- .github/workflows/build-test-package.yml | 4 ++-- pyproject.toml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 96b7a48..7781a42 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -4,12 +4,12 @@ on: [push,pull_request] jobs: cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.2 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.4 with: itk-module-deps: 'BoneEnhancement@e6935aa760c3fa4e247ca0f4924a4fe3e420bf91:IOScanco@10a73c1ab2de044c4dd73608f91cf52012aff5e4' python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.2 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.4 with: itk-module-deps: 'InsightSoftwareConsortium/ITKBoneEnhancement@e6935aa760c3fa4e247ca0f4924a4fe3e420bf91' secrets: diff --git a/pyproject.toml b/pyproject.toml index de58c40..25e75cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "itk-hasi" -version = "0.4.0" +version = "0.4.1" description = "High-throughput Applications for Skeletal Imaging" readme = "README.md" license = {file = "LICENSE"} @@ -12,7 +12,7 @@ authors = [ { name = "Kitware Medical", email = "itk+community@discourse.itk.org" }, ] keywords = [ - "ITK", + "itk", "InsightToolkit", ] classifiers = [ @@ -34,7 +34,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Medical Science Apps.", "Topic :: Software Development :: Libraries", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "itk == 5.4.*", "itk-boneenhancement", @@ -42,14 +42,14 @@ dependencies = [ ] [project.urls] -Download = "https://itk.org/" -Homepage = "https://itk.org/" +Download = "https://github.com/KitwareMedical/HASI" +Homepage = "https://github.com/KitwareMedical/HASI" [tool.scikit-build] # 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``.