Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: bump native builds to use ITK v5.4rc03+patches #1106

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/cxx-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name: C++,Native Python
on: [push,pull_request]

env:
itk-git-tag: "v5.4rc01"
itk-wheel-tag: "v5.4rc01"
ITKMeshToPolyData-git-tag: "v0.11rc01"
ITKMeshToPolyData-git-tag: "v0.11rc02"

jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@eebccc8d50a25fac571324ae56dd254bd64607a8
uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@e7c959441f1e513e8dedf380202e553f3aacf124
with:
itk-module-deps: 'MeshToPolyData@v0.11rc01'
itk-git-tag: 877acbac082d5d8132e3d66f13732914b6408ef7
itk-module-deps: 'MeshToPolyData@v0.11rc02'
ctest-options: '-E itkPipelineTest'

python-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@eebccc8d50a25fac571324ae56dd254bd64607a8
uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@e7c959441f1e513e8dedf380202e553f3aacf124
with:
itk-module-deps: 'InsightSoftwareConsortium/ITKMeshToPolyData@v0.11rc01'
itk-module-deps: 'InsightSoftwareConsortium/ITKMeshToPolyData@v0.11rc02'
itk-python-package-tag: e80c3754b472f16e61756f3988cf876c2a7bf097
secrets:
pypi_password: ${{ secrets.pypi_password }}
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='itk-webassemblyinterface',
version='1.0b127',
version='1.0b171',
author='Insight Software Consortium',
author_email='itk+community@discourse.itk.org',
packages=['itk'],
Expand Down Expand Up @@ -43,7 +43,7 @@
keywords='ITK InsightToolkit',
url=r'https://itk.org/',
install_requires=[
r'itk-io>=5.4rc1',
r'itk-meshtopolydata>=0.11rc1',
r'itk>=5.4rc3',
r'itk-meshtopolydata>=0.11rc2',
]
)
Loading