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 from deprecated build_sphinx to new build_docs #68

Merged
merged 1 commit into from
Sep 6, 2016
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
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ matrix:

# Check for sphinx doc build warnings - we do this first because it
# may run for a long time
- python: 2.7
env: SETUP_CMD='build_docs -w'
- python: 3.5
env: SETUP_CMD='build_sphinx -w'
env: SETUP_CMD='build_docs -w'

# Do a test without the optional dependencies
- python: 3.5
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Install the latest development version from https://github.com/astropy/regions :
cd regions
python setup.py install
python setup.py test
python setup.py build_sphinx
python setup.py build_docs

Optional dependencies
=====================
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[build_sphinx]
[build_docs]
source-dir = docs
build-dir = docs/_build
all_files = 1
Expand Down