File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file for Sphinx projects
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ # Set the OS, Python version, and other tools you might need
9
+ build :
10
+ os : ubuntu-22.04
11
+ tools :
12
+ python : " 3.11"
13
+ # You can also specify other tool versions:
14
+ # nodejs: "20"
15
+ # rust: "1.70"
16
+ # golang: "1.20"
17
+
18
+ # Build documentation in the "docs/" directory with Sphinx
19
+ sphinx :
20
+ configuration : docs/conf.py
21
+ # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
22
+ # builder: "dirhtml"
23
+ # Fail on all warnings to avoid broken references
24
+ # fail_on_warning: true
25
+
26
+ # (Optional) Build docs in additional formats; Scout has historically offered PDF, ePub, and HTML
27
+ formats :
28
+ - pdf
29
+ - epub
30
+ - htmlzip
31
+
32
+ # Optional but recommended, declare the Python requirements required
33
+ # to build your documentation
34
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
35
+ # python:
36
+ # install:
37
+ # - requirements: docs/requirements.txt
Original file line number Diff line number Diff line change 136
136
html_theme_path = [sphinx_rtd_theme .get_html_theme_path ()]
137
137
except ImportError :
138
138
html_theme = 'alabaster'
139
+ else :
140
+ extensions = ["sphinx_rtd_theme" , ]
141
+ html_theme = "sphinx_rtd_theme"
139
142
140
143
# Theme options are theme-specific and customize the look and feel of a theme
141
144
# further. For a list of options available for each theme, see the
You can’t perform that action at this time.
0 commit comments