From 27e4d5cb390a655629a29edb22d939cec92d29a7 Mon Sep 17 00:00:00 2001 From: Tom Birdsong Date: Tue, 7 Nov 2023 08:58:59 -0500 Subject: [PATCH 1/2] ENH: Bump for ITK v5.4rc02 pre-release candidate Bump for ITK v5.4rc02 and release v0.2.1 --- .github/workflows/build-test-package.yml | 6 +++--- setup.py | 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 9d4376a..b82e82d 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -3,9 +3,9 @@ name: Build, test, package on: [push,pull_request] env: - itk-git-tag: "v5.4rc01" - itk-wheel-tag: "v5.4rc01" - ITKPythonPackage-git-tag: "5ad02309321621cdc7269b9b68a35013c912271c" + itk-git-tag: "v5.4rc02" + itk-wheel-tag: "v5.4rc02" + ITKPythonPackage-git-tag: "v5.4rc02" ctest-options: "" jobs: diff --git a/setup.py b/setup.py index eda5d72..e4d4555 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='itk-ioomezarrngff', - version='0.2.0', + version='0.2.1', author='Insight Software Consortium', author_email='itk+community@discourse.itk.org', packages=['itk'], @@ -43,6 +43,6 @@ keywords='ITK InsightToolkit', url=r'https://itk.org/', install_requires=[ - r'itk-io>=5.4rc1' + r'itk-io>=5.4rc2' ] ) From 14008038f1df71594dad80be3f6f83cc27f4c630 Mon Sep 17 00:00:00 2001 From: Tom Birdsong Date: Wed, 8 Nov 2023 14:00:14 -0500 Subject: [PATCH 2/2] BUG: Force ITKPythonPackage script checkout Force ITKPythonPackage script checkout. co-authored-by: Matt McCormick --- .github/workflows/build-test-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index b82e82d..ce76bc7 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -287,7 +287,7 @@ jobs: pushd /c/P/IPP git remote add InsightSoftwareConsortium https://github.com/InsightSoftwareConsortium/ITKPythonPackage.git --tags git fetch InsightSoftwareConsortium - git checkout ${{ env.ITKPythonPackage-git-tag }} + git reset --hard ${{ env.ITKPythonPackage-git-tag }} git status popd else