File tree 1 file changed +21
-18
lines changed
1 file changed +21
-18
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
1
6
version : 2
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: "19"
15
+ # rust: "1.64"
16
+ # golang: "1.19"
17
+
18
+ # Build documentation in the "docs/" directory with Sphinx
3
19
mkdocs :
4
- configuration : mkdocs.yml
20
+ configuration : docs/ mkdocs.yml
5
21
fail_on_warning : false
6
22
23
+ # Optional but recommended, declare the Python requirements required
24
+ # to build your documentation
25
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
7
26
python :
8
27
install :
9
- - method : pip
10
- path : .
11
- extra_requirements :
12
- - click==8.1.3
13
- - colorama==0.4.6
14
- - Jinja2==3.1.2
15
- - Markdown==3.3.7
16
- - ghp-import==2.1.0
17
- - MarkupSafe==2.1.3
18
- - mergedeep==1.3.4
19
- - mkdocs==1.4.3
20
- - packaging==23.1
21
- - python-dateutil==2.8.2
22
- - PyYAML==6.0
23
- - pyyaml_env_tag==0.1
24
- - six==1.16.0
25
- - watchdog==3.0.0
28
+ - requirements : docs/requirements.txt
You can’t perform that action at this time.
0 commit comments