File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ formats :
9
+ - epub
10
+ - pdf
11
+
12
+ # Set the version of Python and other tools you might need
13
+ build :
14
+ os : ubuntu-20.04
15
+ tools :
16
+ python : " 3.9"
17
+ # You can also specify other tool versions:
18
+ # nodejs: "16"
19
+ # rust: "1.55"
20
+ # golang: "1.17"
21
+
22
+ # Build documentation in the docs/ directory with Sphinx
23
+ sphinx :
24
+ builder : html
25
+ configuration : conf.py
26
+ fail_on_warning : false
27
+
28
+ # If using Sphinx, optionally build your docs in additional formats such as PDF
29
+ # formats:
30
+ # - pdf
31
+
32
+ # Optionally declare the Python requirements required to build your docs
33
+ python :
34
+ install :
35
+ - requirements : requirements.txt
Original file line number Diff line number Diff line change
1
+ docutils >= 0.14 ,< 0.18
You can’t perform that action at this time.
0 commit comments