Fix: Add missing Python module dependency "munch" causing cleanup job failures
[releng/lftools.git] / .readthedocs.yml
1 # Read the Docs configuration file
2 # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
4 # Required
5 version: 2
6
7 # Build documentation in the docs/ directory with Sphinx
8 sphinx:
9   configuration: docs/conf.py
10
11 # Build documentation with MkDocs
12 #mkdocs:
13 #  configuration: mkdocs.yml
14
15 # Optionally build your docs in additional formats such as PDF
16 formats:
17   - pdf
18
19 build:
20   os: ubuntu-22.04
21   tools:
22     python: "3.11"
23   jobs:
24     post_checkout:
25       - git fetch --unshallow || true
26
27 python:
28   install:
29     - extra_requirements:
30         - docs
31       path: .
32       method: pip