diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 331cc4b6..f0a23315 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: "v5.1.2" + itk-git-tag: "abd38d5a0040b9a8fbb0ad3127089dbb72a93342" cmake-build-type: "MinSizeRel" - os: windows-2019 c-compiler: "cl.exe" cxx-compiler: "cl.exe" - itk-git-tag: "v5.1.2" + itk-git-tag: "abd38d5a0040b9a8fbb0ad3127089dbb72a93342" cmake-build-type: "Release" - os: macos-10.15 c-compiler: "clang" cxx-compiler: "clang++" - itk-git-tag: "v5.1.2" + itk-git-tag: "abd38d5a0040b9a8fbb0ad3127089dbb72a93342" cmake-build-type: "MinSizeRel" steps: @@ -137,7 +137,7 @@ jobs: matrix: python-version: [36, 37, 38, 39] include: - - itk-python-git-tag: "v5.1.1.post1" + - itk-python-git-tag: "v5.2rc01" steps: - uses: actions/checkout@v2 @@ -173,7 +173,7 @@ jobs: max-parallel: 2 matrix: include: - - itk-python-git-tag: "v5.1.2" + - itk-python-git-tag: "v5.2rc01" steps: - uses: actions/checkout@v2 @@ -209,7 +209,7 @@ jobs: matrix: python-version-minor: [6, 7, 8, 9] include: - - itk-python-git-tag: "v5.1.2" + - itk-python-git-tag: "v5.2rc01" steps: - name: Get specific version of CMake, Ninja @@ -229,7 +229,7 @@ jobs: shell: bash run: | mv im ../../ - cd ../../ + cd ../../im curl -L "https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${{ matrix.itk-python-git-tag }}/ITKPythonBuilds-windows.zip" -o "ITKPythonBuilds-windows.zip" 7z x ITKPythonBuilds-windows.zip -o/c/P -aoa -r curl -L "https://data.kitware.com/api/v1/file/5c0ad59d8d777f2179dd3e9c/download" -o "doxygen-1.8.11.windows.bin.zip" @@ -250,7 +250,7 @@ jobs: - name: Publish Python package as GitHub Artifact uses: actions/upload-artifact@v1 with: - name: WindowWheel3.${{ matrix.python-version-minor }} + name: WindowsWheel3.${{ matrix.python-version-minor }} path: ../../im/dist build-linux-opencl-python-packages: diff --git a/setup.py b/setup.py index f9991fe9..a3b9bfae 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,6 @@ keywords='ITK InsightToolkit', url=r'https://itk.org/', install_requires=[ - r'itk>=5.1.2' + r'itk>=5.2rc1' ] )