Skip to content

Commit 2e74286

Browse files
committed
Use most recent sphinx versions
1 parent d0abd59 commit 2e74286

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,15 @@ env:
1010
- SPHINX_VERSION=1.6.1
1111
- SPHINX_VERSION=1.6.2
1212
- SPHINX_VERSION=1.6.3
13+
- SPHINX_VERSION=""
1314
install:
1415
- pip install coveralls
15-
- pip install sphinx==${SPHINX_VERSION}
16+
# install sphinx
17+
- if [[ $SPHINX_VERSION != "" ]]; then
18+
pip install sphinx==${SPHINX_VERSION};
19+
else
20+
pip install sphinx;
21+
fi
1622
- pip install sphinx-testing
1723
- python setup.py install
1824

0 commit comments

Comments
 (0)