https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 2d509dcf93d45505a35a94b6f1112cece205a844 authored by Christopher Fonnesbeck on 09 January 2018, 16:04:09 UTC
Added release date to release notes
Tip revision: 2d509dc
buildosx
#!/bin/sh
export CFLAGS="-arch x86_64"
export FFLAGS="-static -ff2c -arch x86_64"
export LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch x86_64"
rm -rf build
python setupegg.py bdist_egg
back to top