File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -107,16 +107,15 @@ install:
107107 # Install miniconda to allow quicker installation of dependencies
108108 # See https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html
109109 #
110+ # for OSX, also get the MacOS 10.9 SDK, as per
111+ # https://docs.conda.io/projects/conda-build/en/latest/resources/compiler-tools.html
110112 - if [[ $TRAVIS_OS_NAME == linux ]]; then
111113 wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
112114 else
113115 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
114-
115- # also get the MacOS 10.9 SDK, as per
116- # https://docs.conda.io/projects/conda-build/en/latest/resources/compiler-tools.html
117- wget https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.9.sdk.tar.xz
118- tar xvf MacOSX10.9.sdk.tar.xz
119- export CONDA_BUILD_SYSROOT="`pwd`/MacOSX10.9.sdk"
116+ wget https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.9.sdk.tar.xz;
117+ tar xvf MacOSX10.9.sdk.tar.xz;
118+ export CONDA_BUILD_SYSROOT="`pwd`/MacOSX10.9.sdk";
120119 fi
121120 - bash miniconda.sh -b -p $HOME/miniconda
122121 - export PATH="$HOME/miniconda/bin:$PATH"
You can’t perform that action at this time.
0 commit comments