From c72290fda9d5fd25757408dd5ab995642d81cc92 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Wed, 27 Nov 2024 15:29:38 -0500 Subject: [PATCH] chore: Add .readthedocs.yml to support RTD migration --- .readthedocs.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..7c99e8d --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,16 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3.12" + jobs: + post_create_environment: + - python -m pip install poetry + post_install: + - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs + +sphinx: + builder: html + configuration: docs/conf.py + fail_on_warning: true