From b8afd9f6468c3bdb5f24d9ee969f4e52582be284 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..31be99d --- /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 + - rye sync + - make docs + - mkdir -p ${READTHEDOCS_OUTPUT} + - mv dist/docs "${READTHEDOCS_OUTPUT}/html" + +sphinx: + configuration: docs/conf.py + fail_on_warning: false