We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f39f62b commit a565dc5Copy full SHA for a565dc5
.readthedocs.yml
@@ -1,6 +1,23 @@
1
+# readthedocs config file for Sphinx projects
2
+# https://docs.readthedocs.io/en/stable/config-file/v2.html
3
+
4
+# Required
5
+version: 2
6
7
+# Set the OS, Python version and other tools you might need
8
build:
- image: latest
9
+ os: ubuntu-22.04
10
+ tools:
11
+ python: "3.11"
12
13
+# Build documentation in the "docs/" directory with Sphinx
14
+sphinx:
15
+ configuration: docs/conf.py
16
+ # Fail on all warnings.
17
+ fail_on_warning: true
18
19
python:
- version: 3.8
- setup_py_install: true
20
+ install:
21
+ - requirements: docs/requirements.txt
22
+ - method: pip
23
+ path: .
0 commit comments