File tree 1 file changed +16
-5
lines changed
1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change 1
- # File: .readthedocs.yaml
1
+ # File: .readthedocs.yaml (see example: https://docs.readthedocs.io/en/stable/config-file/v2.html)
2
2
3
- version : 1
3
+ # Required (see https://blog.readthedocs.com/migrate-configuration-v2/)
4
+ version : 2
4
5
6
+ # Set the OS, Python version and other tools you might need
7
+ build :
8
+ os : ubuntu-22.04
9
+ tools :
10
+ python : " 3.8"
11
+
12
+ # Build documentation in the "docs/" directory with Sphinx
5
13
sphinx :
6
- configuration : docs/conf.py
14
+ configuration : docs/source/ conf.py
7
15
16
+ # Optional but recommended, declare the Python requirements required
17
+ # to build your documentation
18
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
8
19
python :
9
- version : 3.8
10
20
install :
11
- - requirements : docs/requirements.txt
21
+ - requirements : docs/requirements.txt
22
+
You can’t perform that action at this time.
0 commit comments