blob: 996b55a570a717a8ee34c88ddd1ecb7f8c806f49 [file] [log] [blame]
Arunachalam Ganapathy2ebdeac2023-06-14 15:45:43 +01001#
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
10version: 2
11
12# Set the version of Python and other tools you might need
13build:
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
20sphinx:
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
25formats:
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
31python:
32 install:
33 - requirements: docs/requirements.txt