File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Original file line number Diff line number Diff line change @@ -102,8 +102,6 @@ install:
102
102
if [[ $BUILD_DOCS == true ]]; then
103
103
pip install $PRE numpydoc ipython jsonschema mistune colorspacious
104
104
pip install -q $PRE linkchecker
105
- # Installing basemap from github until it's back on pypi
106
- pip install https://github.com/matplotlib/basemap/tarball/master
107
105
wget https://github.com/google/fonts/blob/master/ofl/felipa/Felipa-Regular.ttf?raw=true -O Felipa-Regular.ttf
108
106
wget http://mirrors.kernel.org/ubuntu/pool/universe/f/fonts-humor-sans/fonts-humor-sans_1.0-1_all.deb
109
107
mkdir -p tmp
@@ -118,6 +116,13 @@ install:
118
116
fi;
119
117
120
118
- python setup.py install
119
+ - |
120
+ # Installing basemap from github until it's back on pypi
121
+ # We have to install it after matplotlib to avoid pulling in MPL as
122
+ # a dependency
123
+ if [[ $BUILD_DOCS == true ]]; then
124
+ pip install https://github.com/matplotlib/basemap/tarball/master
125
+ fi;
121
126
122
127
script :
123
128
# The number of processes is hardcoded, because using too many causes the
You can’t perform that action at this time.
0 commit comments