Files
catalyst/etc/rebuild-cython.sh
T

9 lines
215 B
Bash
Executable File

#!/bin/bash
if [[ "$OSTYPE" == "darwin"* ]]; then
find -E zipline tests -regex '.*\.(c|so)' -exec rm {} +
else
find zipline tests -regex '.*\.\(c\|so\)' -exec rm {} +
fi
python setup.py build_ext --inplace