test-builds

GitHub repository to test different Read the Docs builds scenarios.


Read the Docs configuration file used to build this docs:

 1# .readthedocs.yaml
 2# Read the Docs configuration file
 3# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
 4
 5# Required
 6version: 2
 7
 8# Set the version of Python and other tools you might need
 9build:
10  os: ubuntu-22.04
11  tools:
12    python: "3.11"
13
14# Build documentation in the docs/ directory with Sphinx
15sphinx:
16  configuration: docs/conf.py

Sphinx configuration file used to build this docs (see full file),

 1# -*- coding: utf-8 -*-
 2
 3# Default settings
 4project = 'Test Builds'
 5extensions = [
 6]
 7
 8latex_engine = 'xelatex'  # allow us to build Unicode chars
 9
10
11# Include all your settings here
12html_theme = 'sphinx_rtd_theme'
13
14
15
16