diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 2c3c0e3..c7cfbc8 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -3,8 +3,8 @@ name: Build, test, package on: [push,pull_request] env: - itk-git-tag: "835dc01388d22c4b4c9a46b01dbdfe394ec23511" - itk-wheel-tag: "v5.3rc04.post2" # Same ITK C++ reference commit, different tag name + itk-git-tag: "171fb2ba33a87041f99328a2f26612ff33aa9cc8" + itk-wheel-tag: "v5.3rc04.post3" # Same ITK C++ reference commit, different tag name jobs: build-test-cxx: @@ -57,7 +57,7 @@ jobs: - name: 'Build 🐍 Python 📦 package' run: | export ITK_PACKAGE_VERSION=${{ env.itk-wheel-tag }} - for tarball in "" "-manylinux2014"; do + for tarball in "-manylinux_2_28" "-manylinux2014"; do rm -rf ITKPythonPackage export TARBALL_SPECIALIZATION=${tarball} ./dockcross-manylinux-download-cache-and-build-module-wheels.sh cp${{ matrix.python-version }} @@ -80,7 +80,7 @@ jobs: - name: 'Specific XCode version' run: | ls "/Applications" - sudo xcode-select -s "/Applications/Xcode_11.7.app" + sudo xcode-select -s "/Applications/Xcode_13.2.1.app" - name: Get specific version of CMake, Ninja uses: lukka/get-cmake@v3.18.3 diff --git a/setup.py b/setup.py index 9a4dec4..19af93e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='itk-splitcomponents', - version='2.0.8', + version='2.0.9', author='Matthew M. McCormick', author_email='matt.mccormick@kitware.com', packages=['itk'], @@ -50,6 +50,6 @@ keywords='ITK Higher-order Derivative Gradient', url=r'https://github.com/InsightSoftwareConsortium/ITKSplitComponents', install_requires=[ - r'itk>=5.3rc04.post2' + r'itk>=5.3rc04.post3' ] )