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 13version: 2 14 15# Configuration for the documentation build 16build: 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 24sphinx: 25 configuration: docs/conf.py 26 27# The documentation will also be built in a pdf format 28formats: 29 - pdf 30 - htmlzip 31 32# Configuration of the Python environment 33python: 34 install: 35 - requirements: docs/requirements.txt 36