From b0c4e6d4a7e73502d4f04f8ca22cd5d9764d0f63 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sun, 19 Nov 2023 11:37:15 -0500 Subject: [PATCH 1/3] Create .readthedocs.yaml --- .readthedocs.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..f3aa1f5a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .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" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: +# install: +# - requirements: docs/requirements.txt From 68fbd5f19eb919d01eaa7396869c06eeefebdea2 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sun, 19 Nov 2023 11:40:43 -0500 Subject: [PATCH 2/3] Update .readthedocs.yaml --- .readthedocs.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index f3aa1f5a..0b8263a1 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -14,9 +14,12 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py + +formats: + - pdf # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -# python: -# install: -# - requirements: docs/requirements.txt +python: + install: + - requirements: docs/requirements.txt From 9b89f9e984ed818b5566116485e2dc3b6cd34442 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sun, 19 Nov 2023 11:40:53 -0500 Subject: [PATCH 3/3] Update .readthedocs.yaml --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 0b8263a1..34d12f41 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -22,4 +22,4 @@ formats: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - - requirements: docs/requirements.txt + - requirements: requirements.txt