Elena Uziunaite | bd4d7a9 | 2023-10-24 15:58:31 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # |
| 3 | # Copyright (c) 2023, Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | #------------------------------------------------------------------------------- |
| 8 | |
| 9 | # Read the Docs configuration file |
| 10 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details |
| 11 | |
| 12 | # Version of the configuration file, v1 is no longer supported |
| 13 | version: 2 |
| 14 | |
| 15 | # Configuration for the documentation build |
| 16 | build: |
| 17 | os: ubuntu-22.04 |
| 18 | tools: |
| 19 | python: "3.11" |
| 20 | apt_packages: |
| 21 | - plantuml |
| 22 | |
| 23 | # Build documentation in the "docs/" directory with Sphinx |
| 24 | sphinx: |
| 25 | configuration: docs/conf.py |
| 26 | |
| 27 | # The documentation will also be built in a pdf format |
| 28 | formats: |
| 29 | - pdf |
Elena Uziunaite | 12e0ae6 | 2023-11-07 16:57:07 +0000 | [diff] [blame] | 30 | - htmlzip |
Elena Uziunaite | bd4d7a9 | 2023-10-24 15:58:31 +0100 | [diff] [blame] | 31 | |
| 32 | # Configuration of the Python environment |
| 33 | python: |
| 34 | install: |
| 35 | - requirements: docs/requirements.txt |