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 image: latest
5
6sphinx:
7 configuration: docs/conf.py
8
9python:
10 version: 3
11 install:
12 - 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]
8
9latex_engine = 'xelatex' # allow us to build Unicode chars
10
11
12# Include all your settings here
13html_theme = 'sphinx_rtd_theme'
14
15
16
17
>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow() # UTC
datetime.datetime(2023, 8, 1, 13, 47, 19, 434401)