We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d160830 commit f517b50Copy full SHA for f517b50
1 file changed
scripts/manylinux-build-wheels.sh
@@ -57,3 +57,12 @@ for whl in dist/*.whl; do
57
rm $whl
58
done
59
60
+# Install packages and test
61
+for PYBIN in /opt/python/*/bin/; do
62
+ if [[ ${PYBIN} == *"cp26"* ]]; then
63
+ echo "Skipping ${PYBIN}"
64
+ continue
65
+ fi
66
+ ${PYBIN}/pip install SimpleITK --user --no-cache-dir --no-index -f /work/dist
67
+ (cd $HOME; ${PYBIN}/python -c 'import SimpleITK as sitk; print(sitk.Version())')
68
+done
0 commit comments