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

Change Travis to use pip3 for installing sphinx #2124

Merged
merged 1 commit into from
Dec 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ function doc ()
# Do not generate documentation for pull requests
if [[ $TRAVIS_PULL_REQUEST != 'false' ]]; then exit; fi
# Install sphinx
pip install --user sphinx pyparsing==2.1.9 sphinxcontrib-doxylink
pip3 install --user sphinx pyparsing==2.1.9 sphinxcontrib-doxylink
# Configure
mkdir $BUILD_DIR && cd $BUILD_DIR
cmake -DDOXYGEN_USE_SHORT_NAMES=OFF \
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ addons:
- libvtk5-qt4-dev
- libglew-dev
- libopenni-dev
- python3-pip
before_install:
- bash .travis.sh before-install

Expand Down
2 changes: 1 addition & 1 deletion doc/advanced/content/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
html_show_copyright = False
html_show_sphinx = False
html_add_permalinks = None
needs_sphinx = 1.0
needs_sphinx = '1.0'
file_insertion_enabled = True
raw_enabled = True
# Set up doxylink
Expand Down