Skip to content

Commit 929f68e

Browse files
author
Sylvain MARIE
committed
Fixed travis build
1 parent 77fdf06 commit 929f68e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: .travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ install:
7474
- conda list
7575
- python ci_tools/py_install.py conda ci_tools/requirements-conda.txt
7676
- python ci_tools/py_install.py pip ci_tools/requirements-pip.txt
77+
# this does not work anymore on python 2 so lets only do it when needed
78+
- if [ "${TRAVIS_PYTHON_VERSION}" = "3.5" ]; then pip install mkdocs-material mkdocs; fi;
7779
# travis-specific installs
7880
- pip install PyGithub # for ci_tools/github_release.py
7981
- pip install codecov # See https://github.com/codecov/example-python.

Diff for: ci_tools/requirements-pip.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ coverage
2222
requests
2323

2424
# --- to generate the doc (see .travis)
25-
mkdocs-material #==3.3.0
26-
mkdocs # ==1.0.4 # this is to prevent a version non-compliant with mkdocs-material to be installed.
25+
# does not work on python 2 anymore
26+
#mkdocs-material #==3.3.0
27+
#mkdocs # ==1.0.4 # this is to prevent a version non-compliant with mkdocs-material to be installed.

0 commit comments

Comments
 (0)