File tree 2 files changed +10
-6
lines changed
.continuous-integration/travis
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,8 @@ chmod +x miniconda.sh
7
7
export PATH=/home/travis/miniconda/bin:$PATH
8
8
conda update --yes conda
9
9
10
- # Install non-Python dependencies for documentation
11
- if [[ $SETUP_CMD == build_sphinx* ]]
12
- then
13
- sudo apt-get update
14
- sudo apt-get install graphviz texlive-latex-extra dvipng
15
- fi
10
+ # Installation of non-Python dependencies for documentation is now
11
+ # in .travis.yml
16
12
17
13
# Install Python dependencies
18
14
source " $( dirname " ${BASH_SOURCE[0]} " ) " /setup_dependencies_common.sh
Original file line number Diff line number Diff line change 9
9
# Setting sudo to false opts in to Travis-CI container-based builds.
10
10
sudo : false
11
11
12
+ # The apt packages below are needed for sphinx builds, which can no longer
13
+ # be installed with sudo apt-get.
14
+ addons :
15
+ apt :
16
+ packages :
17
+ - graphviz
18
+ - texlive-latex-extra
19
+ - dvipng
12
20
env :
13
21
global :
14
22
# Set defaults to avoid repeating in most cases
You can’t perform that action at this time.
0 commit comments