File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222
2323before_install :
2424 # (a) linux dependencies
25- - sudo apt-get install pandoc
2625 - sudo apt-get install ant
27- - sudo apt-get install ant-optional
26+ - sudo apt-get install ant-optional # for junitreports
2827
2928install :
3029 - pip list
31- # needs to be installed beforehand
32- - pip install setuptools_scm
30+ - pip install six setuptools_scm # apparently python 2 requires this
3331 - python ci_tools/py_install.py pip ci_tools/requirements-pip.txt
32+ # this does not work anymore on python 2 so lets only do it when needed
33+ - if [ "${TRAVIS_PYTHON_VERSION}" = "3.5" ]; then pip install mkdocs-material mkdocs; fi;
3434 - |
3535 if [ "${TRAVIS_PYTHON_VERSION}" = "2.7" ]; then
3636 echo "No need to install enforce pytypes"
Original file line number Diff line number Diff line change @@ -20,5 +20,6 @@ pytest-html==1.9.0 # otherwise requires pytest 5
2020xunitparser
2121
2222# --- to generate the doc (see .travis)
23- mkdocs-material #==3.3.0
24- mkdocs # ==1.0.4 # this is to prevent a version non-compliant with mkdocs-material to be installed.
23+ # does not work on python 2 > NOW DONE IN TRAVIS
24+ # mkdocs-material #==3.3.0
25+ # 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