There was a problem hiding this comment.
This will need some updates to handle 2.7.
Sorry, something went wrong.
| include: | ||
| - os: linux | ||
| language: python | ||
| python: 3.5 |
There was a problem hiding this comment.
s/3.5/2.7/
Sorry, something went wrong.
| - TESTING=docs | ||
| before_script: | ||
| - cd Doc | ||
| - make venv PYTHON=python3 |
There was a problem hiding this comment.
Since there is no make venv on 2.7, just do pip install -U Sphinx (or add a 'venv' target, but that's a bit weird since there is no 'venv' module in 2.7).
Sorry, something went wrong.
| - cd Doc | ||
| - make venv PYTHON=python3 | ||
| script: | ||
| - make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-q" |
There was a problem hiding this comment.
Along with the make venv change, remove SPHINXBUILD here.
Sorry, something went wrong.
| - ./configure | ||
| - make -s -j4 | ||
| # Need a venv that can parse covered code. | ||
| - ./python -m venv venv |
There was a problem hiding this comment.
This won't fly with 2.7, but I'm not sure what we can do instead to fix it. On the other hand, do we care as much about coverage on 2.7?
Sorry, something went wrong.
|
GH-74 has some proposed changes to .travis.yml. |
Sorry, something went wrong.
There was a problem hiding this comment.
All the requested changes have now been made
Sorry, something went wrong.
|
There are a couple of other changes to be backported, but the changes I requested have been made. |
Sorry, something went wrong.
No description provided.