Skip to content

Commit c2a6e1b

Browse files
committed
Fix readthedocs doc building issue
- Readthedocs building has been failing due to their change: readthedocs/readthedocs.org#10626 Committing readthedocs setup similar to tutorial example: https://github.com/readthedocs/tutorial-template
1 parent 5d875c3 commit c2a6e1b

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.readthedocs.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
version: "2"
4+
5+
build:
6+
os: "ubuntu-22.04"
7+
tools:
8+
python: "3.10"
9+
10+
python:
11+
install:
12+
- requirements: docs/requirements.txt
13+
14+
sphinx:
15+
configuration: docs/conf.py

docs/requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
sphinx==7.1.2
2+
sphinx-rtd-theme==1.3.0rc1
3+

0 commit comments

Comments
 (0)