https://github.com/pymc-devs/pymc3
Raw File
Tip revision: ed74406735b2faf721e7ebfa156cc6828a5ae16e authored by Michael Osthege on 15 March 2022, 08:30:24 UTC
Final release preparations (#5597)
Tip revision: ed74406
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