mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-01 14:51:47 +08:00
fce97176d6
* 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
9 lines
217 B
Bash
Executable File
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
|