From 871c9a219c13821852840e8dd06042eb3666fdab Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 5 Sep 2025 10:31:29 -0400 Subject: [PATCH] Adding readthedocs configuration file --- .readthedocs.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..f9ddeda --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,24 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version, and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.10" + jobs: + post_create_environment: + # Install poetry + # https://python-poetry.org/docs/#installing-manually + - pip install poetry + post_install: + # Install dependencies with 'docs' dependency group + # https://python-poetry.org/docs/managing-dependencies/#dependency-groups + # VIRTUAL_ENV needs to be set manually for now, see #11150 + - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install + +sphinx: + configuration: docs/conf.py