Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes Sphinx deprecated LaTeX options #613

Merged
merged 3 commits into from
Dec 9, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removes Python 2.6 and 3.3 from Sphinx builds.
  • Loading branch information
jfinkels committed Dec 9, 2016
commit 42caee8cf856ef1c0b7f952d609235d8967a8cdb
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,12 @@ before_script:
- psql -c 'create database testdb;' -U postgres

script:
# Documentation build checks.
- sphinx-build -n -W docs/ build/sphinx/html/
# Documentation build checks. Sphinx 1.5 only supports Python version 2.7
# and 3.4+, so don't build the documentation on those versions.
- |
if [[ "$TRAVIS_PYTHON_VERSION" != "2.6" && "$TRAVIS_PYTHON_VERSION" != "3.3" ]]; then
sphinx-build -n -W docs/ build/sphinx/html/
fi
# Unit tests.
- coverage run --source=flask_restless setup.py test

Expand Down