https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 081e7f4a55ce45ef50a03f8062611051d9c00ce8 authored by Thomas Wiecki on 20 December 2018, 18:01:59 UTC
Add date to release notes and note on dropping python 2 support.
Tip revision: 081e7f4
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