d00eaf0303
This PS implements the following changes: - switches freeze approach to requirements-direct.txt and requirements-frozen.txt files - adjusts code tabulation style according to yapf recommendations - replaces deprecated usage of responce.body attribute with responce.text - fixes integration tests in controlled by Makefile + tox - uplifts Helm to v3.9.4 Change-Id: I751db72eb8f670825382f11a36657112faeb169a
27 lines
681 B
YAML
27 lines
681 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.8
|
|
install:
|
|
- requirements: doc/requirements-doc.txt
|
|
- requirements: python/requirements-frozen.txt
|
|
- requirements: python/test-requirements.txt
|