From 657d9fcb50a520cbda4ee28496f599b24c5fb33d Mon Sep 17 00:00:00 2001 From: JulieSchramm Date: Tue, 14 Sep 2021 16:19:33 -0600 Subject: [PATCH] Add .readthedocs.yaml and set specific versions of sphinx and sphinx_rtd_theme in requirements.txt (#177) --- .readthedocs.yaml | 23 +++++++++++++++++++++++ docs/UsersGuide/requirements.txt | 3 ++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..13a1f475f9 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,23 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build all formats (htmlzip, pdf, epub) +#formats: all +formats: [] + +# Optionally set the version of Python and requirements required to build your +# docs +python: + version: 3.7 + install: + - requirements: docs/UsersGuide/requirements.txt + +# Configuration for Sphinx documentation (this is the default documentation +# type) +sphinx: + builder: html + configuration: docs/UsersGuide/source/conf.py diff --git a/docs/UsersGuide/requirements.txt b/docs/UsersGuide/requirements.txt index 9c7258463b..97c5d4b95a 100644 --- a/docs/UsersGuide/requirements.txt +++ b/docs/UsersGuide/requirements.txt @@ -1,2 +1,3 @@ +sphinx==2.4.4 sphinxcontrib-bibtex -sphinx_rtd_theme +sphinx-rtd-theme==0.4.3