Skip to content

Commit 3f02258

Browse files
author
Carlos Hernandez
committed
add py36
1 parent ad335fb commit 3f02258

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ env:
55
matrix:
66
- CONDA_PY=2.7
77
- CONDA_PY=3.5
8+
- CONDA_PY=3.6
89

910
branches:
1011
only:
@@ -31,7 +32,7 @@ deploy:
3132
local-dir: docs/_deploy/
3233
on:
3334
branch: master
34-
condition: "$CONDA_PY = 3.5"
35+
condition: "$CONDA_PY = 3.6"
3536
region: us-east-1
3637
detect_encoding: true
3738
access_key_id: $AWS_ACCESS_KEY

devtools/travis-ci/build_docs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ conda create --yes -n docenv python=$CONDA_PY
88
source activate docenv
99
conda install -yq --use-local osprey
1010

11+
# Install doc requirements
12+
conda install --yes --file docs/requirements.txt
13+
1114
# We don't use conda for these:
1215
# sphinx_rtd_theme's latest releases are not available
1316
# neither is msmb_theme
1417
# neither is sphinx > 1.3.1 (fix #1892 autodoc problem)
1518
pip install -I sphinx==1.3.5 sphinx_rtd_theme==0.1.9 msmb_theme==1.2.0
1619

17-
# Install doc requirements
18-
conda install --yes --file docs/requirements.txt
19-
2020
# Make docs
2121
cd docs && make html && cd -
2222

0 commit comments

Comments
 (0)