From 35d6800eecdd850f822975008a2b262e5b214503 Mon Sep 17 00:00:00 2001 From: Alan Crosswell Date: Wed, 4 Mar 2020 12:01:01 -0500 Subject: [PATCH 1/3] add on modules for rtd to install --- .readthedocs.yml | 15 +++++++++++++++ docs/requirements.txt | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 .readthedocs.yml create mode 100644 docs/requirements.txt diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..eef926c3b --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,15 @@ +# .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 docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +python: + version: 3.7 + install: + - requirements: docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 000000000..64b48e434 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,2 @@ +oauthlib>=3.0.1 +m2r>=0.2.1 From 2c8159e47e4519a60df9fbeeffe17b0f68db9c35 Mon Sep 17 00:00:00 2001 From: Alan Crosswell Date: Wed, 4 Mar 2020 12:23:02 -0500 Subject: [PATCH 2/3] add django to docs build requirements --- docs/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/requirements.txt b/docs/requirements.txt index 64b48e434..aa4db0073 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,3 @@ +Django>=3.0,<3.1 oauthlib>=3.0.1 m2r>=0.2.1 From 88c31b624ed88a975865d68ec312f0276a7ce670 Mon Sep 17 00:00:00 2001 From: Alan Crosswell Date: Wed, 4 Mar 2020 12:26:33 -0500 Subject: [PATCH 3/3] need to add self (oauth2_provider) as well --- docs/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/requirements.txt b/docs/requirements.txt index aa4db0073..63d82768f 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,4 @@ Django>=3.0,<3.1 oauthlib>=3.0.1 m2r>=0.2.1 +.