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

DOC: Fix RTD build #170

Merged
merged 1 commit into from
Jun 3, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ python:
install:
- method: pip
path: .
extra_requirements:
- rtd

# Don't build any extra formats
formats: []
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ zip_safe = False
packages = find:
python_requires = >=3.7
install_requires =
sphinx>=2
sphinx>=4

[options.extras_require]
test =
pytest
pytest-cov
cython
coverage
rtd =
# https://github.com/readthedocs/sphinx_rtd_theme/issues/1463
sphinx<7
sphinx-rtd-theme

[options.package_data]
sphinx_automodapi = templates/*/*.rst
Expand Down