2022-08-08 00:26:40 +00:00
|
|
|
---
|
2022-04-18 18:53:28 +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:
|
2023-05-07 19:01:44 +00:00
|
|
|
os: ubuntu-22.04
|
2022-04-18 18:53:28 +00:00
|
|
|
tools:
|
2023-05-07 19:01:44 +00:00
|
|
|
python: "3.11"
|
2023-04-27 22:28:16 +00:00
|
|
|
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:
|
2023-10-10 20:13:52 +00:00
|
|
|
- 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
|
|
|
|
2023-05-07 19:01:44 +00:00
|
|
|
# submodules required for include statements
|
|
|
|
submodules:
|
|
|
|
include: all
|
|
|
|
recursive: true
|
2022-04-18 18:53:28 +00:00
|
|
|
|
|
|
|
# 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
|