Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ 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.6
with:
itk-module-deps: 'BoneEnhancement@e6935aa760c3fa4e247ca0f4924a4fe3e420bf91:IOScanco@10a73c1ab2de044c4dd73608f91cf52012aff5e4'

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.6
with:
itk-module-deps: 'InsightSoftwareConsortium/ITKBoneEnhancement@e6935aa760c3fa4e247ca0f4924a4fe3e420bf91'
secrets:
Expand Down
37 changes: 28 additions & 9 deletions .github/workflows/test-python-hasi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
name: Test Python HASI

on: [push,pull_request]
# NOTE (2026-04): This workflow is temporarily disabled on push / PR
# events because every element of its toolchain has bit-rotted:
#
# * Runner images `ubuntu-18.04`, `windows-2019`, and `macos-10.15`
# have all been retired by GitHub Actions, so the jobs sit in
# `queued` indefinitely and never start.
# * Python 3.7 is end-of-life (EOL June 2023) and is not installable
# on modern runner images via `actions/setup-python@v5`.
# * The pinned test dependencies `itk==5.2.0.post2` (2021),
# `itk-shape==0.2.1`, and `dwd==1.0.1` are incompatible with the
# `itk` 5.4.x API that the rest of HASI now targets.
# * The IPFS-hosted test data workflow relies on
# `ibnesayeed/setup-ipfs@master` plus an `ipfs pin add` of a CID
# that is no longer reliably pinned on the public swarm, so even
# on a working runner the test data step fails.
#
# The last successful run of this workflow predates 2025-03. Rather
# than mask the failures with `continue-on-error`, trigger only on
# `workflow_dispatch` so the file stays around as a scaffold for when
# someone has time to modernize the Python test stack (port tests away
# from IPFS, bump `itk`, pick new runner images). The `src/hasi`
# pytest files themselves are unchanged and still runnable locally.

on: [workflow_dispatch]

env:
hasi-testing-data-ipfs-cid: bafybeihvca4e6ik3twyz5qdz3f33woqpzorrcfwkh47tp3wwpxuuggmbey
Expand All @@ -11,19 +34,15 @@ jobs:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
include:
- os: ubuntu-18.04
- os: windows-2019
- os: macos-10.15
os: [ubuntu-24.04, windows-2022, macos-14]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Set up Python 3.7
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: '3.10'

- name: Setup ipfs
uses: ibnesayeed/setup-ipfs@master
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
"itk-boneenhancement",
Expand Down
Loading