mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-08 17:36:35 +08:00
add python3 packages
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
set -efu
|
||||
|
||||
pys="$(py3versions -rv 2>/dev/null)"
|
||||
pkgbuild=${pkgbuild:-no}
|
||||
|
||||
srcdir=$PWD
|
||||
|
||||
for py in $pys; do
|
||||
echo "=== python$py ==="
|
||||
if [ "$pkgbuild" = "yes" ]; then
|
||||
export PYTHONPATH="$srcdir/debian/tmp/usr/lib/python3/dist-packages"
|
||||
cd "$srcdir/build/"
|
||||
else
|
||||
cd "$ADTTMP"
|
||||
fi
|
||||
|
||||
python$py /usr/bin/nosetests3 -s -v skimage 2>&1
|
||||
done
|
||||
Reference in New Issue
Block a user