summaryrefslogtreecommitdiff
path: root/cubeviz/build.sh
blob: 14c64d7d54d18efb17372e48e736f527c4c5871c (plain) (blame)
1
2
3
4
5
6
7
8
9
# Replace malformed pytest requirement with something sane
pytest_pattern='s/pytest==*/pytest>=3.1.0/'
for f in setup.*
do
    sed -e ${pytest_pattern} "${f}" > "${f}.new"
    mv "${f}.new" "${f}"
done

$PYTHON setup.py install