Skip to content

Commit

Permalink
Merge pull request #123 from aylward/BumpITKWheelForCI
Browse files Browse the repository at this point in the history
Bump itk wheel for ci
  • Loading branch information
aylward authored Aug 11, 2022
2 parents 2a7fbf2 + e7a9a0e commit 88fe752
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on: [push,pull_request]
env:
vtk-git-tag: "1681cee3489800373c2e183af2d3ca8552e05940"
itk-git-tag: "master"
itk-wheel-tag: "v5.3rc04"
itk-minimalpathextraction-git-tag: "v1.2.2"
itk-wheel-tag: "v5.3rc04.post2"
itk-minimalpathextraction-git-tag: "v1.2.3"

jobs:
build-test-cxx:
Expand Down Expand Up @@ -203,17 +203,17 @@ jobs:
python-version: [37, 38, 39]
include:
- python-version: 37
itk-package: "ITK-cp37-cp37m-manylinux2014_x64"
itk-package: "ITK-cp37-cp37m-manylinux_2_28_x64"
c-compiler: "gcc"
cxx-compiler: "g++"
cmake-build-type: "Release"
- python-version: 38
itk-package: "ITK-cp38-cp38-manylinux2014_x64"
itk-package: "ITK-cp38-cp38-manylinux_2_28_x64"
c-compiler: "gcc"
cxx-compiler: "g++"
cmake-build-type: "Release"
- python-version: 39
itk-package: "ITK-cp39-cp39-manylinux2014_x64"
itk-package: "ITK-cp39-cp39-manylinux_2_28_x64"
c-compiler: "gcc"
cxx-compiler: "g++"
cmake-build-type: "Release"
Expand Down Expand Up @@ -266,6 +266,10 @@ jobs:
ln -s -f -T /ITKPythonPackage/${{ matrix.itk-package }} /work/${{ matrix.itk-package }}
ln -s -f -T /ITKPythonPackage/ITK-source /work/ITK-source
ln -s -f -T /ITKPythonPackage/oneTBB-prefix /work/oneTBB-prefix
echo "/work"
ls -la /work
echo "/ITKPythonPackage"
ls -la /ITKPythonPackage
export ITK_DIR="/work/${{ matrix.itk-package }}"
git clone https://github.com/Slicer/SlicerExecutionModel
mkdir -p SlicerExecutionModel-build
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cmake_minimum_required(VERSION 3.10.2)

project( TubeTK )

set( TubeTK_VERSION 1.3.1 )
set( TubeTK_VERSION 1.3.2 )

if(NOT ITK_SOURCE_DIR)
include(itk-module-init.cmake)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include_dirs=[np.get_include()],
setup(
name='itk-tubetk',
version='1.3.1',
version='1.3.2',
author='Stephen R. Aylward',
author_email='[email protected]',
packages=['itk'],
Expand Down Expand Up @@ -57,6 +57,6 @@
install_requires=[
r'numpy',
r'itk>=5.3rc4.post2',
r'itk-minimalpathextraction>=1.2.2'
r'itk-minimalpathextraction>=1.2.3'
]
)

0 comments on commit 88fe752

Please sign in to comment.