Replaced macOS Command Line Tools install with miniconda path

This commit is contained in:
Andrew Murray 2019-10-26 09:58:47 +11:00
parent 5e68a4d895
commit 720a1738fa
2 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,6 @@
set -e set -e
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
brew install libtiff libjpeg webp little-cms2 brew install libtiff libjpeg webp little-cms2
PYTHONOPTIMIZE=0 pip install cffi PYTHONOPTIMIZE=0 pip install cffi

View File

@ -3,5 +3,8 @@
set -e set -e
coverage erase coverage erase
if [ $(uname) == "Darwin" ]; then
export CPPFLAGS="-I/usr/local/miniconda/include";
fi
make clean make clean
make install-coverage make install-coverage