243022d16c
Readthedocs failed to render Armada exceptions with error: > WARNING: autodoc: failed to import exception ... from module > 'armada'; the following exception was raised: No module named 'armada' and others. Trying to add Armada requirements to the installed requirements list, so that Readthedocs has all modules, including those needed for the Armada itself. Cosmetic readability changes: 1. combined all Makefile .PHONY targets into one 2. merged multiple LABEL instructions in Dockerfile into one Change-Id: I3f88fa3abf66e5d6a2f9e57f6f1514a03a0c5a30
26 lines
614 B
YAML
26 lines
614 B
YAML
# .readthedocs.yml
|
|
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Build documentation in the doc/ directory with Sphinx
|
|
sphinx:
|
|
configuration: doc/source/conf.py
|
|
|
|
# Build documentation with MkDocs
|
|
#mkdocs:
|
|
# configuration: mkdocs.yml
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
|
formats:
|
|
- pdf
|
|
|
|
# Optionally set the version of Python and requirements required to build your docs
|
|
python:
|
|
version: 3.7
|
|
install:
|
|
- requirements: doc/requirements.txt
|
|
- requirements: requirements.txt
|