diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 9ae670e..738da14 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -13,17 +13,17 @@ jobs: - os: ubuntu-18.04 c-compiler: "gcc" cxx-compiler: "g++" - itk-git-tag: "abd38d5a0040b9a8fbb0ad3127089dbb72a93342" + itk-git-tag: "v5.2rc02" cmake-build-type: "MinSizeRel" - os: windows-2019 c-compiler: "cl.exe" cxx-compiler: "cl.exe" - itk-git-tag: "abd38d5a0040b9a8fbb0ad3127089dbb72a93342" + itk-git-tag: "v5.2rc02" cmake-build-type: "Release" - os: macos-10.15 c-compiler: "clang" cxx-compiler: "clang++" - itk-git-tag: "abd38d5a0040b9a8fbb0ad3127089dbb72a93342" + itk-git-tag: "v5.2rc02" cmake-build-type: "MinSizeRel" steps: @@ -136,7 +136,7 @@ jobs: matrix: python-version: [36, 37, 38, 39] include: - - itk-python-git-tag: "v5.2rc01" + - itk-python-git-tag: "v5.2rc02" steps: - uses: actions/checkout@v2 @@ -172,7 +172,7 @@ jobs: max-parallel: 2 matrix: include: - - itk-python-git-tag: "v5.2rc01" + - itk-python-git-tag: "v5.2rc02" steps: - uses: actions/checkout@v2 @@ -208,7 +208,7 @@ jobs: matrix: python-version-minor: [6, 7, 8, 9] include: - - itk-python-git-tag: "v5.2rc01" + - itk-python-git-tag: "v5.2rc02" steps: - name: Get specific version of CMake, Ninja diff --git a/setup.py b/setup.py index 7a0aa10..f551eb3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='itk-thickness3d', - version='5.1.1', + version='5.2rc2', author='Insight Software Consortium', author_email='itk+community@discourse.itk.org', packages=['itk'], @@ -44,6 +44,6 @@ keywords='ITK InsightToolkit', url=r'https://itk.org/', install_requires=[ - r'itk>=5.2rc1' + r'itk>=5.2rc2' ] )