File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -94,8 +94,8 @@ if(ITKPythonPackage_SUPERBUILD)
9494
9595 set (ITK_REPOSITORY "https://github.com/InsightSoftwareConsortium/ITK.git" )
9696
97- # release branch, 2024-04-08
98- set (ITK_GIT_TAG "v5.4rc03 " )
97+ # master branch, 2024-04-12
98+ set (ITK_GIT_TAG "81be125a547ba2fa2343ae36cce8812bd711c5b4 " )
9999
100100 #-----------------------------------------------------------------------------
101101 # A separate project is used to download ITK, so that it can reused
Original file line number Diff line number Diff line change 22
33# Run this script inside a dockcross container to build Python wheels for an aarch ITK module.
44cd /work
5+ # Update GPG keys
6+ dnf upgrade -y almalinux-release
7+ # Newer Python.cmake module required for SABI
8+ pipx upgrade cmake
59yum -y install sudo ninja-build
610/opt/python/cp39-cp39/bin/python -m pip install -r /ITKPythonPackage/requirements-dev.txt
711for PYBIN in " ${PYBINARIES[@]} " ; do
Original file line number Diff line number Diff line change @@ -181,18 +181,18 @@ if test "${ARCH}" == "x64"; then
181181else
182182 for whl in dist/itk_* $( uname -m) .whl; do
183183 auditwheel repair ${whl} -w /work/dist/
184- rm ${whl}
185184 done
186185fi
187186
188187# Install packages and test
189188for PYBIN in " ${PYBINARIES[@]} " ; do
190189 ${PYBIN} /pip install --user numpy
190+ ${PYBIN} /pip install --upgrade pip
191191 ${PYBIN} /pip install itk --user --no-cache-dir --no-index -f /work/dist
192192 (cd $HOME && ${PYBIN} /python -c ' from itk import ITKCommon;' )
193193 (cd $HOME && ${PYBIN} /python -c ' import itk; image = itk.Image[itk.UC, 2].New()' )
194194 (cd $HOME && ${PYBIN} /python -c ' import itkConfig; itkConfig.LazyLoading = False; import itk;' )
195195 (cd $HOME && ${PYBIN} /python ${script_dir} /../../docs/code/test.py )
196196done
197197
198- rm -f dist/numpy* .whl
198+ rm -f dist/numpy* .whl
You can’t perform that action at this time.
0 commit comments