From 34f379b34de0705238266221713d01032975206b Mon Sep 17 00:00:00 2001 From: Ian Kenney Date: Fri, 31 Jan 2025 14:48:26 -0500 Subject: [PATCH 1/3] Add .readthedocs.yaml --- .readthedocs.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..491c2d5 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,19 @@ +version: 2 + +build: + os: "ubuntu-20.04" + tools: + python: "mambaforge-4.10" + +sphinx: + configuration: docs/conf.py + fail_on_warning: false + +conda: + environment: devtools/conda-envs/docs.yaml + +python: + # Install our python package before building the docs + install: + - method: pip + path: . \ No newline at end of file From 75b25e2a3ad8bb5787fb4341f70737c6444d320d Mon Sep 17 00:00:00 2001 From: Ian Kenney Date: Fri, 31 Jan 2025 14:57:05 -0500 Subject: [PATCH 2/3] Kick RTD From c74596c89851f8b43565fec5d5b1069614f61c2d Mon Sep 17 00:00:00 2001 From: Ian Kenney Date: Fri, 31 Jan 2025 15:00:50 -0500 Subject: [PATCH 3/3] Add ofe-sphinx-theme as docs dependency --- devtools/conda-envs/docs.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devtools/conda-envs/docs.yaml b/devtools/conda-envs/docs.yaml index e604c69..2ef837b 100644 --- a/devtools/conda-envs/docs.yaml +++ b/devtools/conda-envs/docs.yaml @@ -4,3 +4,5 @@ channels: dependencies: - python>=3.12 + - pip: + - git+https://github.com/OpenFreeEnergy/ofe-sphinx-theme \ No newline at end of file