Skip to content

Commit

Permalink
ENH: Build Python package against ITK 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Aug 22, 2019
1 parent 2491848 commit aafd819
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
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-ndreg',
version='0.1.0',
version='0.1.1',
author='Neurodata',
author_email='vikramc@jhmi.edu',
packages=['itk'],
Expand Down Expand Up @@ -44,6 +44,6 @@
keywords='ITK InsightToolkit',
url=r'https://itk.org/',
install_requires=[
r'itk'
r'itk>=5.0.1'
]
)
8 changes: 5 additions & 3 deletions test/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variables:
ITKGitTag: v5.0.0
ITKPythonGitTag: v5.0.0.post1
ITKGitTag: v5.0.1
ITKPythonGitTag: v5.0.1
CMakeBuildType: Release

trigger:
Expand Down Expand Up @@ -58,7 +58,9 @@ jobs:
displayName: 'Install build dependencies'
- script: |
git clone --depth 5 --branch $(ITKGitTag) https://github.com/InsightSoftwareConsortium/ITK.git
git clone https://github.com/InsightSoftwareConsortium/ITK.git
cd ITK
git checkout $(ITKGitTag)
workingDirectory: $(Agent.BuildDirectory)
displayName: 'Download ITK'
Expand Down

0 comments on commit aafd819

Please sign in to comment.