From 4240937bb58b50f6dfb386df579f9694360fe737 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Sun, 17 Mar 2024 14:04:54 -0500 Subject: [PATCH] Adding missing `.readthedocs.yml` config file. Signed-off-by: Tim 'mithro' Ansell --- .readthedocs.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..5e3adc29a --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,26 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +build: + os: ubuntu-lts-latest + tools: + # Need to use mambaforge as miniconda runs out of memory on rtd. + python: latest + +python: + install: + - requirements: docs/requirements.txt + - requirements: requirements.txt + - method: pip + path: . + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +#formats: +#- htmlzip