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 1f18a56 commit d65a200Copy full SHA for d65a200
1 file changed
.readthedocs.yaml
@@ -4,11 +4,20 @@ build:
4
os: ubuntu-22.04
5
tools:
6
python: "3.12"
7
- commands:
8
- - |
9
- python -m pip install hatch
10
- if [ "$READTHEDOCS_VERSION_TYPE" != "tag" ]; then
11
- hatch env run --env docs -- towncrier build --version Unreleased --yes
12
- fi
13
- hatch env run --env docs build
14
- hatch env run --env docs readthedocs
+ jobs:
+ pre_build:
+ - |
+ if [ "$READTHEDOCS_VERSION_TYPE" != "tag" ];
+ then
+ towncrier build --version Unreleased --yes;
+ fi
+
15
+mkdocs:
16
+ configuration: mkdocs.yml
17
18
+python:
19
+ install:
20
+ - method: pip
21
+ path: .
22
+ extra_requirements:
23
+ - docs
0 commit comments