From e1411c752078850d81cdbbdf25069f14fb377536 Mon Sep 17 00:00:00 2001 From: Andrei Gherzan Date: Sun, 14 Nov 2021 00:56:24 +0000 Subject: [PATCH] docs: Add module dependency/requirement for RtD myst_parser is not in the default Read The Docs container by default. Pull it in as we use it for parsing the markdown files. Signed-off-by: Andrei Gherzan --- .readthedocs.yaml | 6 ++++++ docs/requirements.txt | 1 + 2 files changed, 7 insertions(+) create mode 100644 .readthedocs.yaml create mode 100644 docs/requirements.txt diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..454f385 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,6 @@ +version: 2 + +python: + version: "3.7" + install: + - requirements: docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..9e4694f --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +myst_parser