diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 1e80b9a..d40e337 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.0" + itk-git-tag: "v5.1.1" cmake-build-type: "MinSizeRel" - os: windows-2019 c-compiler: "cl.exe" cxx-compiler: "cl.exe" - itk-git-tag: "v5.1.0" + itk-git-tag: "v5.1.1" cmake-build-type: "Release" - os: macos-10.15 c-compiler: "clang" cxx-compiler: "clang++" - itk-git-tag: "v5.1.0" + itk-git-tag: "v5.1.1" cmake-build-type: "MinSizeRel" steps: @@ -100,6 +100,9 @@ jobs: set(dashboard_no_clean 1) set(ENV{CC} ${{ matrix.c-compiler }}) set(ENV{CXX} ${{ matrix.cxx-compiler }}) + if(WIN32) + set(ENV{PATH} "\${CTEST_DASHBOARD_ROOT}/ITK-build/bin;\$ENV{PATH}") + endif() set(dashboard_cache " ITK_DIR:PATH=\${CTEST_DASHBOARD_ROOT}/ITK-build BUILD_TESTING:BOOL=ON @@ -128,9 +131,9 @@ jobs: strategy: max-parallel: 2 matrix: - python-version: [35, 36, 37, 38] + python-version: [36, 37, 38, 39] include: - - itk-python-git-tag: "v5.1.0.post2" + - itk-python-git-tag: "v5.1.1.post1" steps: - uses: actions/checkout@v2 @@ -166,7 +169,7 @@ jobs: max-parallel: 2 matrix: include: - - itk-python-git-tag: "v5.1.0.post2" + - itk-python-git-tag: "v5.1.1.post1" steps: - uses: actions/checkout@v2 @@ -193,9 +196,9 @@ jobs: strategy: max-parallel: 2 matrix: - python-version-minor: [5, 6, 7, 8] + python-version-minor: [6, 7, 8, 9] include: - - itk-python-git-tag: "v5.1.0.post2" + - itk-python-git-tag: "v5.1.1.post1" steps: - uses: actions/checkout@v2 diff --git a/README.rst b/README.rst index d00c20a..da62b75 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,7 @@ ITKBSplineGradient ================== -.. image:: https://dev.azure.com/ITKBSplineGradient/ITKBSplineGradient/_apis/build/status/InsightSoftwareConsortium.ITKBSplineGradient?branchName=master - :target: https://dev.azure.com/ITKBSplineGradient/ITKBSplineGradient/_build/latest?definitionId=1&branchName=master - :alt: Build status +.. image:: https://github.com/InsightSoftwareConsortium/ITKBSplineGradient/workflows/Build,%20test,%20package/badge.svg Overview -------- diff --git a/setup.py b/setup.py index 25bda67..e49145a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='itk-bsplinegradient', - version='0.2.1', + version='0.2.2', author='Matthew McCormick', author_email='matt.mccormick@kitware.com', packages=['itk'], @@ -46,6 +46,6 @@ keywords='ITK InsightToolkit Image-Gradient B-spline', url=r'https://github.com/InsightSoftwareConsortium/ITKBSplineGradient', install_requires=[ - r'itk>=5.1.0.post2' + r'itk>=5.1.1' ] )