Skip to content
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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ if(ITKPythonPackage_SUPERBUILD)

set(ITK_REPOSITORY "https://github.com/InsightSoftwareConsortium/ITK.git")

# release branch, 2024-04-08
set(ITK_GIT_TAG "v5.4rc03")
# master branch, 2024-04-12
set(ITK_GIT_TAG "81be125a547ba2fa2343ae36cce8812bd711c5b4")

#-----------------------------------------------------------------------------
# A separate project is used to download ITK, so that it can reused
Expand Down
4 changes: 4 additions & 0 deletions scripts/internal/manylinux-aarch64-build-module-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# Run this script inside a dockcross container to build Python wheels for an aarch ITK module.
cd /work
# Update GPG keys
dnf upgrade -y almalinux-release
# Newer Python.cmake module required for SABI
pipx upgrade cmake
yum -y install sudo ninja-build
/opt/python/cp39-cp39/bin/python -m pip install -r /ITKPythonPackage/requirements-dev.txt
for PYBIN in "${PYBINARIES[@]}"; do
Expand Down
4 changes: 2 additions & 2 deletions scripts/internal/manylinux-build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,18 +181,18 @@ if test "${ARCH}" == "x64"; then
else
for whl in dist/itk_*$(uname -m).whl; do
auditwheel repair ${whl} -w /work/dist/
rm ${whl}
done
fi

# Install packages and test
for PYBIN in "${PYBINARIES[@]}"; do
${PYBIN}/pip install --user numpy
${PYBIN}/pip install --upgrade pip
${PYBIN}/pip install itk --user --no-cache-dir --no-index -f /work/dist
(cd $HOME && ${PYBIN}/python -c 'from itk import ITKCommon;')
(cd $HOME && ${PYBIN}/python -c 'import itk; image = itk.Image[itk.UC, 2].New()')
(cd $HOME && ${PYBIN}/python -c 'import itkConfig; itkConfig.LazyLoading = False; import itk;')
(cd $HOME && ${PYBIN}/python ${script_dir}/../../docs/code/test.py )
done

rm -f dist/numpy*.whl
rm -f dist/numpy*.whl