Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 710a520

Browse files
authored
Replaced macOS Command Line Tools install with miniconda path (#4169)
Replaced macOS Command Line Tools install with miniconda path
2 parents 5e68a4d + 720a173 commit 710a520

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/macos-install.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
set -e
44

5-
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
6-
75
brew install libtiff libjpeg webp little-cms2
86

97
PYTHONOPTIMIZE=0 pip install cffi

.travis/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
set -e
44

55
coverage erase
6+
if [ $(uname) == "Darwin" ]; then
7+
export CPPFLAGS="-I/usr/local/miniconda/include";
8+
fi
69
make clean
710
make install-coverage

0 commit comments

Comments
 (0)