Skip to content

Commit 5f39cab

Browse files
authored
Merge pull request #18 from mseng10/update-github-actions
2 parents 024bfed + 3298978 commit 5f39cab

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.github/workflows/build-test-package.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
- os: ubuntu-18.04
1414
c-compiler: "gcc"
1515
cxx-compiler: "g++"
16-
itk-git-tag: "v5.1.0"
16+
itk-git-tag: "v5.1.1"
1717
cmake-build-type: "MinSizeRel"
1818
- os: windows-2019
1919
c-compiler: "cl.exe"
2020
cxx-compiler: "cl.exe"
21-
itk-git-tag: "v5.1.0"
21+
itk-git-tag: "v5.1.1"
2222
cmake-build-type: "Release"
2323
- os: macos-10.15
2424
c-compiler: "clang"
2525
cxx-compiler: "clang++"
26-
itk-git-tag: "v5.1.0"
26+
itk-git-tag: "v5.1.1"
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
@@ -100,6 +100,9 @@ jobs:
100100
set(dashboard_no_clean 1)
101101
set(ENV{CC} ${{ matrix.c-compiler }})
102102
set(ENV{CXX} ${{ matrix.cxx-compiler }})
103+
if(WIN32)
104+
set(ENV{PATH} "\${CTEST_DASHBOARD_ROOT}/ITK-build/bin;\$ENV{PATH}")
105+
endif()
103106
set(dashboard_cache "
104107
ITK_DIR:PATH=\${CTEST_DASHBOARD_ROOT}/ITK-build
105108
BUILD_TESTING:BOOL=ON
@@ -128,9 +131,9 @@ jobs:
128131
strategy:
129132
max-parallel: 2
130133
matrix:
131-
python-version: [35, 36, 37, 38]
134+
python-version: [36, 37, 38, 39]
132135
include:
133-
- itk-python-git-tag: "v5.1.0.post2"
136+
- itk-python-git-tag: "v5.1.1.post1"
134137

135138
steps:
136139
- uses: actions/checkout@v2
@@ -166,7 +169,7 @@ jobs:
166169
max-parallel: 2
167170
matrix:
168171
include:
169-
- itk-python-git-tag: "v5.1.0.post2"
172+
- itk-python-git-tag: "v5.1.1.post1"
170173

171174
steps:
172175
- uses: actions/checkout@v2
@@ -193,9 +196,9 @@ jobs:
193196
strategy:
194197
max-parallel: 2
195198
matrix:
196-
python-version-minor: [5, 6, 7, 8]
199+
python-version-minor: [6, 7, 8, 9]
197200
include:
198-
- itk-python-git-tag: "v5.1.0.post2"
201+
- itk-python-git-tag: "v5.1.1.post1"
199202

200203
steps:
201204
- uses: actions/checkout@v2

README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
ITKBSplineGradient
22
==================
33

4-
.. image:: https://dev.azure.com/ITKBSplineGradient/ITKBSplineGradient/_apis/build/status/InsightSoftwareConsortium.ITKBSplineGradient?branchName=master
5-
:target: https://dev.azure.com/ITKBSplineGradient/ITKBSplineGradient/_build/latest?definitionId=1&branchName=master
6-
:alt: Build status
4+
.. image:: https://github.com/InsightSoftwareConsortium/ITKBSplineGradient/workflows/Build,%20test,%20package/badge.svg
75

86
Overview
97
--------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='itk-bsplinegradient',
16-
version='0.2.1',
16+
version='0.2.2',
1717
author='Matthew McCormick',
1818
author_email='matt.mccormick@kitware.com',
1919
packages=['itk'],
@@ -46,6 +46,6 @@
4646
keywords='ITK InsightToolkit Image-Gradient B-spline',
4747
url=r'https://github.com/InsightSoftwareConsortium/ITKBSplineGradient',
4848
install_requires=[
49-
r'itk>=5.1.0.post2'
49+
r'itk>=5.1.1'
5050
]
5151
)

0 commit comments

Comments
 (0)