Replaced macOS Command Line Tools install with miniconda path (#4169)

Replaced macOS Command Line Tools install with miniconda path
This commit is contained in:
Hugo van Kemenade 2019-10-26 09:04:57 +03:00 committed by GitHub
commit 710a5207bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,6 @@
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
PYTHONOPTIMIZE=0 pip install cffi

View File

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