xref: /libCEED/.readthedocs.yml (revision ed094490f53e580908aa80e9fe815a6fd76d7526)
1# Read the Docs configuration file
2# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
4# Required
5version: 2
6
7build:
8  os: ubuntu-24.04
9  tools:
10    python: "3.13"
11    nodejs: "23"
12  apt_packages:
13    - librsvg2-bin
14  jobs:
15    post_create_environment:
16      - npx playwright install
17      - npm install -g @mermaid-js/mermaid-cli
18
19# Build documentation in the docs/ directory with Sphinx
20sphinx:
21  builder: dirhtml
22  configuration: doc/sphinx/source/conf.py
23
24# Optionally build your docs in additional formats such as PDF and ePub
25formats:
26  - pdf
27
28# Optionally set the version of Python and requirements required to build your docs
29python:
30  install:
31    - requirements: doc/sphinx/requirements.txt
32