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

docs building using readthedocs.yml version 2 #64

Merged
merged 3 commits into from
May 19, 2019
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
6 changes: 5 additions & 1 deletion doc/_static/pysal-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,8 @@

/* Table with a scrollbar */
.bodycontainer { max-height: 600px; width: 100%; margin: 0; overflow-y: auto; }
.table-scrollable { margin: 0; padding: 0; }
.table-scrollable { margin: 0; padding: 0; }

div.body {
max-width: 1080px;
}
22 changes: 17 additions & 5 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: doc/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
formats: all

python:
version: 3.5
setup_py_install: true
pip_install: true
extra_requirements:
- dev
version: 3.7
install:
- requirements: requirements.txt
- method: pip
path: .
extra_requirements:
- dev