Skip to content

Commit

Permalink
Merge pull request #85 from thewtex/itk-5.2.0.post2
Browse files Browse the repository at this point in the history
ENH: Update CI for ITK 5.2.0
  • Loading branch information
thewtex authored May 12, 2021
2 parents b04dcf3 + 2dc7ed8 commit 6caaa1c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ jobs:
- os: ubuntu-18.04
c-compiler: "gcc"
cxx-compiler: "g++"
itk-git-tag: "7548a390d71dc25b80e792703ee3cfea17853a99"
itk-git-tag: "v5.2.0"
cmake-build-type: "MinSizeRel"
- os: windows-2019
c-compiler: "cl.exe"
cxx-compiler: "cl.exe"
itk-git-tag: "7548a390d71dc25b80e792703ee3cfea17853a99"
itk-git-tag: "v5.2.0"
cmake-build-type: "Release"
- os: macos-10.15
c-compiler: "clang"
cxx-compiler: "clang++"
itk-git-tag: "7548a390d71dc25b80e792703ee3cfea17853a99"
itk-git-tag: "v5.2.0"
cmake-build-type: "MinSizeRel"

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2

- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Install build dependencies
run: |
Expand Down Expand Up @@ -130,13 +130,13 @@ jobs:
shell: cmd

build-linux-python-packages:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
max-parallel: 2
matrix:
python-version: [36, 37, 38, 39]
include:
- itk-python-git-tag: "v5.2rc03"
- itk-python-git-tag: "v5.2.0.post2"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
max-parallel: 2
matrix:
include:
- itk-python-git-tag: "v5.2rc03"
- itk-python-git-tag: "v5.2.0.post2"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
matrix:
python-version-minor: [6, 7, 8, 9]
include:
- itk-python-git-tag: "v5.2rc03"
- itk-python-git-tag: "v5.2.0.post2"

steps:
- name: Get specific version of CMake, Ninja
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='itk-minimalpathextraction',
version='1.1.2',
version='1.2.0',
author='Insight Software Consortium',
author_email='itk+community@discourse.itk.org',
packages=['itk'],
Expand Down Expand Up @@ -49,6 +49,6 @@
keywords='ITK InsightToolkit',
url=r'https://github.com/InsightSoftwareConsortium/ITKMinimalPathExtraction',
install_requires=[
r'itk>=5.2rc3'
r'itk>=5.2.0.post2'
]
)

0 comments on commit 6caaa1c

Please sign in to comment.