From 179420b35038e93d497c096e25279dee4aeecb6b Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Thu, 8 Jan 2026 11:19:49 -0600 Subject: [PATCH 1/4] DOC: Change hash to main for recommended use. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8010e96..9fb34fd 100644 --- a/README.md +++ b/README.md @@ -87,12 +87,12 @@ on: [push,pull_request] jobs: cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@d4a5ce4f219b66b78269a15392e15c95f90e7e00 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@main with: itk-cmake-options: '-DITK_BUILD_DEFAULT_MODULES:BOOL=OFF -DITKGroup_Core:BOOL=ON' python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@d4a5ce4f219b66b78269a15392e15c95f90e7e00 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@main secrets: pypi_password: ${{ secrets.pypi_password }} ``` @@ -117,7 +117,7 @@ The top-level jobs used to organize the run. Reusable workflows may provide mult ```yaml cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@d4a5ce4f219b66b78269a15392e15c95f90e7e00 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@main ``` Tells GHA to fetch and run the `build-test-cxx.yml` workflow. A commit hash or tagged version may be provided. @@ -132,7 +132,7 @@ certain modules are built before the external module itself is subsequently buil ```yaml python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@d4a5ce4f219b66b78269a15392e15c95f90e7e00 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@main ``` Tells GHA to fetch and run the `build-test-package-python.yml` workflow. A commit hash or tagged version may be provided. From ba8c6a853c7a824cec61935f7e1f43753e679658 Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Thu, 8 Jan 2026 11:20:30 -0600 Subject: [PATCH 2/4] DOC: Recommend itk v5.4.5 as the latest itk-pythno-package-tag --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9fb34fd..6746794 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ to direct workflow execution. ```yaml with: - itk-git-tag: 'v5.3.0' + itk-git-tag: 'v5.4.5' ``` - `itk-cmake-options`: CMake configuration parameters for building ITK as a prerequisite. @@ -242,7 +242,7 @@ to direct workflow execution. ```yaml with: - itk-wheel-tag: 'v5.3.0' + itk-wheel-tag: 'v5.4.5' ``` - `itk-python-package-tag`: The git tag or commit hash for ITKPythonPackage build scripts to use. @@ -254,7 +254,7 @@ to direct workflow execution. ```yaml with: - itk-python-package-tag: 'v5.3.0' + itk-python-package-tag: 'v5.4.5' ``` - `itk-python-package-org`: The GitHub organization to reference for fetching ITKPythonPackage build scripts. From f78ee471f8d643cb911420bd6b100cef662ef64c Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Thu, 8 Jan 2026 11:21:01 -0600 Subject: [PATCH 3/4] DOC: Remove unsupported python versions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6746794..dbb0cd5 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ to direct workflow execution. ```yaml with: - python3-minor-versions: '["7","8","9","10","11"]` # Builds for Python 3.7 through 3.11 + python3-minor-versions: '["9","10","11"]` # Builds for Python 3.9 through 3.11 ``` - `manylinux-platforms`: Array of [manylinux](https://github.com/pypa/manylinux) From cbc7197b954058209f5472175e6e4be552055e66 Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Thu, 8 Jan 2026 11:21:24 -0600 Subject: [PATCH 4/4] DOC: Add date for target platforms supported. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbb0cd5..1f657f0 100644 --- a/README.md +++ b/README.md @@ -342,7 +342,7 @@ on GitHub. ## Frequently Asked Questions -### What target platforms and architectures are supported? +### What target platforms and architectures are supported (as of March 2023)? The `build-test-cxx` workflow supports building and running C++ tests on GitHub Actions runner images for Windows, Linux, and macOS. Image details are available [here](https://github.com/actions/runner-images).