Files
catalyst/etc/rebuild-cython.sh
Conner Fromknecht fce97176d6 Changed zipline -> catalyst import paths
* Updated cython build scripts
 * Updated setup.py to to install catalyst package
 * Updated momentum example to use catalyst package
 * catalyst executable now supports loading pipelines from multiple bundles
2017-06-19 14:43:10 -07:00

9 lines
217 B
Bash
Executable File

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