Sunshine/.readthedocs.yaml

40 lines
963 B
YAML
Raw Normal View History

2022-08-08 00:26:40 +00:00
---
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python
build:
os: ubuntu-22.04
tools:
python: "3.11"
apt_packages:
2023-08-31 19:49:01 +00:00
- graphviz # required to build diagrams
- libboost-locale-dev # required for rstcheck in cpp code block
jobs:
post_build:
- find ./third-party -iname "*.rst" -type f -delete # find and delete rst files in third-party
2023-08-31 19:49:01 +00:00
- rstcheck -r . # lint rst files
# - rstfmt --check --diff -w 120 . # check rst formatting
2022-04-28 22:06:55 +00:00
# submodules required for include statements
submodules:
include: all
recursive: true
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
fail_on_warning: true
# Using Sphinx, build docs in additional formats
formats: all
python:
install:
2022-10-30 02:14:16 +00:00
- requirements: ./docs/requirements.txt