#!/bin/sh
set -e

cp -r example/* "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for PYTHON in `py3versions -s`
do

	echo ""
	echo "---------------- Building with $PYTHON ----------------"
	$PYTHON -m build --skip-dependency-check --no-isolation --wheel
done


