From df938be5c2e7766bb3ec9abafb72d59313ce1454 Mon Sep 17 00:00:00 2001 From: Art Hall Date: Fri, 15 Jun 2018 12:27:55 -0400 Subject: [PATCH 1/2] Add ReadtheDocs configuration file --- .readthedocs.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000000..80a1cfe0c7 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,11 @@ +# Read The Docs config +# - http://docs.readthedocs.io/en/latest/yaml-config.html + +# python version +python: + version: 3.5 + setup_py_install: true + +# Just the HTML and indexing +formats: + - none From 894ff1614a86bb2dcfbe2317c5896f6401307c31 Mon Sep 17 00:00:00 2001 From: Art Hall Date: Tue, 26 Jun 2018 10:08:10 -0400 Subject: [PATCH 2/2] Attempt to reduce the number of dependencies for ReadtheDocs --- .readthedocs.yml | 3 +++ docs/requirements.txt | 2 ++ 2 files changed, 5 insertions(+) create mode 100755 docs/requirements.txt diff --git a/.readthedocs.yml b/.readthedocs.yml index 80a1cfe0c7..5bfd1c15d0 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,3 +9,6 @@ python: # Just the HTML and indexing formats: - none + +# Limit the requirements to building the docs +requirements_file: docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100755 index 0000000000..d60b15994e --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,2 @@ +sphinx-rtd-theme==0.2.5b2 +sphinx==1.6.4