test-builds

GitHub repository to test different Read the Docs builds scenarios.


Read the Docs configuration file used to build this docs:

 1version: 2
 2
 3build:
 4  os: ubuntu-22.04
 5  tools:
 6    python: "3"
 7  # jobs:
 8  #   post_install:
 9  #     - sphinx-build -b linkcheck
10
11sphinx:
12  configuration: docs/conf.py
13
14python:
15  install:
16    - requirements: requirements.txt

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

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

>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow()  # UTC
datetime.datetime(2023, 5, 10, 17, 56, 46, 462993)