From 5cbf4ad167fa45160c43c1c02f4536f434e1d750 Mon Sep 17 00:00:00 2001 From: M3t0r Date: Wed, 14 Aug 2024 03:28:25 +0200 Subject: [PATCH] Add readthedocs.yaml That seems to have become a requirement :-/ --- .readthedocs.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..a47f0f0 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,16 @@ +version: 2 + +build: + os: ubuntu-lts-latest + commands: + - asdf plugin add rye + - asdf install rye latest + - asdf global rye latest + - | + source "$HOME/.rye/env" + make docs + - mv dist/docs "${READTHEDOCS_OUTPUT}/html" + +sphinx: + configuration: docs/conf.py + fail_on_warning: false