From 549c22696a59cb847285ebe45b7b6e32cc3687ba Mon Sep 17 00:00:00 2001 From: Craig Maloney Date: Wed, 15 Mar 2023 11:32:44 -0400 Subject: [PATCH 1/2] Attempting to simplify and mitigate ReadTheDocs requirements (are these packages truly necessary? --- docs/rtd_requirements.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/rtd_requirements.txt b/docs/rtd_requirements.txt index 11dd47a4..3b370b70 100644 --- a/docs/rtd_requirements.txt +++ b/docs/rtd_requirements.txt @@ -1,5 +1 @@ -numpy==1.24.1 -pandas==1.4.1 -python-dateutil==2.8.2 -pytz==2021.3 six==1.16.0 From 44a539513cdaa414d780c72b401ad6b7a541d5fb Mon Sep 17 00:00:00 2001 From: Craig Maloney Date: Wed, 15 Mar 2023 11:51:11 -0400 Subject: [PATCH 2/2] Instantiating RTD config file --- .readthedocs.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..744b7f23 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,29 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + # You can also specify other tool versions: + # nodejs: "19" + # rust: "1.64" + # golang: "1.19" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# If using Sphinx, optionally build your docs in additional formats such as PDF +formats: + - pdf + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: docs/rtd_requirements.txt