#!/bin/sh -e

rm -f target/wheels/*

maturin build --no-sdist --manylinux 2014 -i python3 --release "$@"

pip install --force $(find target/wheels -name "*cp3*")
