Skip to content
Open
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
2 changes: 1 addition & 1 deletion scripts/dockcross-manylinux-build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ oci_exe=$(ociExe)
MANYLINUX_VERSION=${MANYLINUX_VERSION:=_2_28}

if [[ ${MANYLINUX_VERSION} == _2_28 ]]; then
IMAGE_TAG=${IMAGE_TAG:=20250913-6ea98ba}
IMAGE_TAG=${IMAGE_TAG:=20260203-3dfb3ff}
elif [[ ${MANYLINUX_VERSION} == 2014 ]]; then
IMAGE_TAG=${IMAGE_TAG:=20240304-9e57d2b}
else
Expand Down
2 changes: 1 addition & 1 deletion scripts/dockcross-manylinux-set-vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ TARGET_ARCH=${TARGET_ARCH:=x64}

# Specialized manylinux image tag to use for building.
if [[ ${MANYLINUX_VERSION} == _2_28 && ${TARGET_ARCH} == x64 ]]; then
IMAGE_TAG=${IMAGE_TAG:=20250913-6ea98ba}
IMAGE_TAG=${IMAGE_TAG:=20260203-3dfb3ff}
elif [[ ${MANYLINUX_VERSION} == _2_28 && ${TARGET_ARCH} == aarch64 ]]; then
IMAGE_TAG=${IMAGE_TAG:=2025.08.12-1}
elif [[ ${MANYLINUX_VERSION} == 2014 ]]; then
Expand Down
6 changes: 3 additions & 3 deletions scripts/internal/manylinux-build-module-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ for PYBIN in "${PYBINARIES[@]}"; do

if $use_skbuild_classic; then
# So older remote modules with setup.py continue to work
${Python3_EXECUTABLE} -m pip install --upgrade scikit-build
sudo ${Python3_EXECUTABLE} -m pip install --upgrade scikit-build
fi

if [[ -e /work/requirements-dev.txt ]]; then
${PYBIN}/pip install --upgrade -r /work/requirements-dev.txt
sudo ${PYBIN}/pip install --upgrade -r /work/requirements-dev.txt
fi
if [[ -e /ITKPythonPackage/requirements-dev.txt ]]; then
${PYBIN}/pip install --upgrade -r /ITKPythonPackage/requirements-dev.txt
sudo ${PYBIN}/pip install --upgrade -r /ITKPythonPackage/requirements-dev.txt
fi
version=$(basename $(dirname ${PYBIN}))
# Remove "m" -- not present in Python 3.8 and later
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 @@ -62,7 +62,7 @@ for PYBIN in "${PYBINARIES[@]}"; do
echo "Python3_INCLUDE_DIR:${Python3_INCLUDE_DIR}"

# Install dependencies
${PYBIN}/pip install --upgrade -r /work/requirements-dev.txt
sudo ${PYBIN}/pip install --upgrade -r /work/requirements-dev.txt

build_type="Release"
compile_flags="-O3 -DNDEBUG"
Expand Down Expand Up @@ -204,7 +204,7 @@ rm dist/itk_*-linux_*.whl
# Install packages and test
for PYBIN in "${PYBINARIES[@]}"; do
${PYBIN}/pip install --user numpy
${PYBIN}/pip install --upgrade pip
sudo ${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()')
Expand Down