File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ install:
74
74
- conda list
75
75
- python ci_tools/py_install.py conda ci_tools/requirements-conda.txt
76
76
- 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;
77
79
# travis-specific installs
78
80
- pip install PyGithub # for ci_tools/github_release.py
79
81
- pip install codecov # See https://github.com/codecov/example-python.
Original file line number Diff line number Diff line change @@ -22,5 +22,6 @@ coverage
22
22
requests
23
23
24
24
# --- 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.
You can’t perform that action at this time.
0 commit comments