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 c03498f commit 530d2a5Copy full SHA for 530d2a5
.readthedocs.yml
@@ -1,10 +1,20 @@
1
+# .readthedocs.yaml
2
version: 2
3
-python:
4
- version: 3.8
5
- install:
6
- - requirements: docs/requirements.txt
+# Set the version of Python and other tools you might need
+build:
+ os: ubuntu-20.04
7
+ tools: {python: "3.9"}
8
+ jobs:
9
+ pre_create_environment:
10
+ - asdf plugin add poetry
11
+ - asdf install poetry latest
12
+ - asdf global poetry latest
13
+ - poetry config virtualenvs.create false
14
+ post_install:
15
+ - poetry install
16
17
+# Build documentation in the docs/ directory with Sphinx
18
sphinx:
19
configuration: docs/conf.py
20
fail_on_warning: true
docs/requirements.txt
0 commit comments