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 4bcb9f1 commit 8bfb96bCopy full SHA for 8bfb96b
.readthedocs.yml
@@ -1,9 +1,22 @@
1
+# Required
2
+version: 2
3
+
4
+# Set the version of Python and other tools you might need
5
build:
- image: latest
-formats:
- - none
6
+ os: ubuntu-22.04
7
+ tools:
8
+ python: "3.10"
9
10
+# Build documentation in the docs/ directory with Sphinx
11
+sphinx:
12
+ configuration: docs/conf.py
13
14
+# If using Sphinx, optionally build your docs in additional formats such as PDF
15
+# formats:
16
+# - pdf
17
18
+# Optionally declare the Python requirements required to build your docs
19
python:
- pip_install: true
- extra_requirements:
- - tests
- - docs
20
+ install:
21
+ - requirements: docs/requirements.txt
22
0 commit comments