File tree Expand file tree Collapse file tree 3 files changed +34
-1
lines changed Expand file tree Collapse file tree 3 files changed +34
-1
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
+ # Set the version of Python and other tools you might need
9
+ build :
10
+ os : ubuntu-20.04
11
+ tools :
12
+ python : " 3.9"
13
+
14
+ mkdocs :
15
+ configuration : mkdocs.yml
16
+
17
+ # Optionally declare the Python requirements required to build your docs
18
+ python :
19
+ install :
20
+ - requirements : doc/requirements.txt
Original file line number Diff line number Diff line change
1
+ # pip requirements file for MkDocs, used by Read The Docs
2
+ #
3
+ # See:
4
+ #
5
+ # The Read The Docs recommendation to 'pin' the MkDocs version used to build
6
+ # documentation:
7
+ # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html#pinning-dependencies
8
+ #
9
+ # The pip guide to its requirements file format:
10
+ # https://pip.pypa.io/en/stable/reference/requirements-file-format/
11
+ #
12
+ # Latest version of MkDocs as at 2 August 2022
13
+ mkdocs == 1.3.1
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ extra_css:
12
12
extra_javascript :
13
13
- js/searchhack.js
14
14
15
- pages :
15
+ nav :
16
16
- Home : README.md
17
17
- Changelog : ChangeLog.md
18
18
- Tool documentation :
You can’t perform that action at this time.
0 commit comments