From 4eed5776018e15d05e216b121af64ea9037fd5c3 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Thu, 2 Apr 2026 20:28:46 -0500 Subject: [PATCH 1/2] COMP: Update minimum Python version to 3.10+ --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9308cd4..09fe3c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 == 6.0b1" ] From 86574e40d3a29d11e8752f0d1fe02383995e2d1c Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Mon, 13 Apr 2026 17:17:37 -0500 Subject: [PATCH 2/2] COMP: Override python3-minor-versions to drop Python 3.9 The v6.0b01 action defaults python3-minor-versions to ["9","10","11"]. The test-linux-notebooks job picks [0] = Python 3.9, but this wheel declares requires-python >= 3.10, causing: ERROR: Package 'itk-splitcomponents' requires a different Python: 3.9.25 not in '>=3.10' Override to ["10","11"] at the module level. Co-Authored-By: Claude Opus 4.6 (1M context) --- .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 4b31b71..0b25ca7 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -11,6 +11,7 @@ jobs: python-build-workflow: uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v6.0b01 with: + python3-minor-versions: '["10","11"]' test-notebooks: true secrets: pypi_password: ${{ secrets.pypi_password }}