Arunachalam Ganapathy | 2ebdeac | 2023-06-14 15:45:43 +0100 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: BSD-3-Clause |
| 3 | # SPDX-FileCopyrightText: Copyright TF-RMM Contributors. |
| 4 | # |
| 5 | |
| 6 | # Read the Docs configuration file for Sphinx projects |
| 7 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details |
| 8 | |
| 9 | # Required |
| 10 | version: 2 |
| 11 | |
| 12 | # Set the version of Python and other tools you might need |
| 13 | build: |
| 14 | # Ubuntu Jammy LTS |
| 15 | os: ubuntu-22.04 |
| 16 | tools: |
| 17 | python: "3.10" |
| 18 | |
| 19 | # Build documentation in the docs/ directory with Sphinx |
| 20 | sphinx: |
| 21 | configuration: docs/conf.py |
| 22 | |
| 23 | # Optionally build your docs in additional formats such as PDF and ePub |
| 24 | # Other variants to build than HTML |
| 25 | formats: |
| 26 | - pdf |
| 27 | |
| 28 | # Optional but recommended, declare the Python requirements required |
| 29 | # to build your documentation |
| 30 | # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html |
| 31 | python: |
| 32 | install: |
| 33 | - requirements: docs/requirements.txt |