From 406bca886016479c01b929f0a888cf1b28f384b6 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Wed, 22 May 2024 10:02:26 -0400 Subject: [PATCH] ENH: Bump ITK to 5.4.0 In CI and the Python package dependency. --- .github/workflows/build-test-package.yml | 6 +++--- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 2653dd4..0b730fb 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -4,11 +4,11 @@ on: [push,pull_request] jobs: cxx-build-workflow: - uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@e15be287b1e1940b51e38fd6c8e0a32cfe629154 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.0 python-build-workflow-dev: if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags') - uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@e15be287b1e1940b51e38fd6c8e0a32cfe629154 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0 with: python3-minor-versions: '["8","11"]' manylinux-platforms: '["_2_28-x64","2014-x64"]' @@ -18,7 +18,7 @@ jobs: python-build-workflow-main: if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') - uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@e15be287b1e1940b51e38fd6c8e0a32cfe629154 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0 with: python3-minor-versions: '["8","9","10","11"]' manylinux-platforms: '["_2_28-x64","2014-x64"]' diff --git a/pyproject.toml b/pyproject.toml index 7abb2b0..8872b0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "itk-elastix" -version = "0.19.2" +version = "0.20.0" description = "Provides an ITK Python interface to elastix, a toolbox for rigid and nonrigid registration of images" readme = "README.md" license = {file = "LICENSE"} @@ -41,7 +41,7 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "itk>=5.4rc3", + "itk~=5.4.0", ] [project.urls]