Skip to content

Commit

Permalink
Fix readthedocs doc build issue
Browse files Browse the repository at this point in the history
- Doc building at readthedocs have been failing for a few months due
  to their change in configuration:
  readthedocs/readthedocs.org#10626
  Now trying to set up readthedocs building similar to:
  https://github.com/readthedocs/tutorial-template
  • Loading branch information
tkeskita committed Oct 15, 2023
1 parent 669959e commit 7f03c0d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
formats: all
version: "2"

build:
os: "ubuntu-22.04"
tools:
python: "3.10"

python:
install:
- requirements: docs/requirements.txt

sphinx:
configuration: docs/conf.py
3 changes: 3 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sphinx==7.1.2
sphinx-rtd-theme==1.3.0rc1

0 comments on commit 7f03c0d

Please sign in to comment.