#!/bin/sh
set -e

for py in $(py3versions -s); do
    echo "Testing with $py:"
    $py -c "import maxcube; print(maxcube)"
done
