From 74dad897a8ad8ac2eb1959c1acf7011e24e7e21e Mon Sep 17 00:00:00 2001 From: lukashergt Date: Wed, 6 Mar 2024 15:42:54 -0800 Subject: [PATCH] readthedocs requires `build` block to be set, see https://docs.readthedocs.io/en/stable/config-file/index.html --- .readthedocs.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 61b55e3..1df2f0b 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,8 +1,15 @@ # Required version: 2 +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.8" + # Build documentation in the docs/ directory with Sphinx sphinx: + builder: html configuration: docs/source/conf.py fail_on_warning: false @@ -12,7 +19,6 @@ formats: # Optionally set the version of Python and requirements required to build your docs python: - version: 3.8 install: - requirements: docs/requirements.txt - requirements: requirements.txt