Skip to content
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
14 changes: 8 additions & 6 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@ build:
# rust: "1.64"
# golang: "1.19"

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

# If using Sphinx, optionally build your ex-docs in additional formats such as PDF
# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf

# Optionally declare the Python requirements required to build your ex-docs
# python:
# install:
# - requirements: ex-docs/requirements.txt
# Python requirements required to build the docs (sphinx_rtd_theme, used by
# docs/conf.py, isn't installed by default - without this the build fails
# with ModuleNotFoundError: sphinx_rtd_theme)
python:
install:
- requirements: docs/requirements.txt
2 changes: 2 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sphinx
sphinx_rtd_theme
Loading