File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -112,13 +112,16 @@ before_install: |
112
112
if [[ $TRAVIS_OS_NAME != 'osx' ]]; then
113
113
export PATH=/usr/lib/ccache:$PATH
114
114
else
115
+ set -e
115
116
ci/silence brew update
116
117
brew uninstall numpy gdal postgis
118
+ brew unlink python@2
117
119
brew upgrade python
118
- brew install ffmpeg imagemagick mplayer ccache font-wenquanyi-zen-hei
120
+ brew install ffmpeg imagemagick mplayer ccache
119
121
hash -r
120
122
which python
121
123
python --version
124
+ set +e
122
125
# We could install ghostscript and inkscape here to test svg and pdf
123
126
# but this makes the test time really long.
124
127
# brew install ghostscript inkscape
@@ -135,6 +138,8 @@ install:
135
138
- |
136
139
# Install dependencies from PyPI.
137
140
python -mpip install --upgrade $PRE -r requirements/testing/travis_all.txt $EXTRAREQS $PINNEDVERS
141
+ - |
142
+ # Install optional dependencies from PyPI.
138
143
# GUI toolkits are pip-installable only for some versions of Python so
139
144
# don't fail if we can't install them. Make it easier to check whether the
140
145
# install was successful by trying to import the toolkit (sometimes, the
You can’t perform that action at this time.
0 commit comments