From e990e64ccd18d93696bd5020e051b0402138097a Mon Sep 17 00:00:00 2001 From: Arksine Date: Tue, 16 Mar 2021 08:38:53 -0400 Subject: [PATCH] docs: Add .readthedocs.yaml Use Python 3.8 and pin the version of mkdocs. Signed-off-by: Eric Callahan --- .readthedocs.yaml | 10 ++++++++++ docs/doc-requirements.txt | 1 + 2 files changed, 11 insertions(+) create mode 100644 .readthedocs.yaml create mode 100644 docs/doc-requirements.txt diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..7e23dd5 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,10 @@ +version: 2 + +mkdocs: + configuration: mkdocs.yml + fail_on_warning: false + +python: + version: 3.8 + install: + - requirements: docs/doc-requirements.txt diff --git a/docs/doc-requirements.txt b/docs/doc-requirements.txt new file mode 100644 index 0000000..b3667f9 --- /dev/null +++ b/docs/doc-requirements.txt @@ -0,0 +1 @@ +mkdocs==1.1.2