File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 6
6
# here.
7
7
source activate testenv
8
8
9
+ export CC=` which gcc`
9
10
# install documentation building dependencies
10
11
pip install --upgrade numpy
11
12
pip install --upgrade matplotlib setuptools nose coverage sphinx==1.5.5 sphinx_bootstrap_theme numpydoc
@@ -16,4 +17,4 @@ python setup.py clean
16
17
python setup.py develop
17
18
18
19
# pipefail is necessary to propagate exit codes
19
- set -o pipefail && cd doc && make html 2>&1 | tee ~ /log.txt
20
+ set -o pipefail && cd doc && make html 2>&1 | tee ~ /log.txt
Original file line number Diff line number Diff line change @@ -26,10 +26,11 @@ dependencies:
26
26
- sudo -E apt-get -yq remove texlive-binaries --purge
27
27
- sudo -E apt-get -yq update
28
28
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install dvipng texlive-latex-base texlive-latex-extra
29
+ # Other stuff...
30
+ - sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install build-essential
29
31
# Conda installation
30
32
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
31
33
- bash ~/miniconda.sh -b -p $HOME/miniconda
32
- - conda update --yes conda
33
34
- conda create -n testenv --yes python=3.6 pip wheel nose gcc swig
34
35
35
36
# The --user is needed to let sphinx see the source and the binaries
You can’t perform that action at this time.
0 commit comments