Skip to content

Commit c723545

Browse files
authored
Update .readthedocs.yaml
1 parent 0897093 commit c723545

File tree

1 file changed

+21
-18
lines changed

1 file changed

+21
-18
lines changed

Diff for: .readthedocs.yaml

+21-18
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
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
16
version: 2
27

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
319
mkdocs:
4-
configuration: mkdocs.yml
20+
configuration: docs/mkdocs.yml
521
fail_on_warning: false
622

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
726
python:
827
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

0 commit comments

Comments
 (0)