blob: 6e6fa8430d4caacaf980fec69e0ba8b103edb64d [file] [log] [blame]
Boyan Karatotev60c642d2023-02-27 14:41:21 +00001# Copyright (c) 2023, Arm Limited. All rights reserved
2#
3# SPDX-License-Identifier: BSD-3-Clause
4#
5# Configuration file for the readthedocs deploy
6# Available at https://trustedfirmware-a.readthedocs.io/en/latest/
7
8
9# readthedocs config version
10version: 2
11
12build:
13 os: ubuntu-22.04 # Ubuntu Jammy LTS
14 tools:
15 python: "3.10"
16 apt_packages:
17 - plantuml
18
19python:
20 install:
21 - requirements: docs/requirements.txt
22
23sphinx:
24 configuration: docs/conf.py
25
26# Auxiliary formats to export to (in addition to the default HTML output).
27formats:
28 - pdf
29