From f4e6c0bb81d3f857f61259975810997dc38c95e1 Mon Sep 17 00:00:00 2001 From: Enrico Joerns Date: Sat, 30 Sep 2023 00:31:34 +0200 Subject: [PATCH] add .readthedocs.yaml to fix build readthedocs.org starts refusing builds with missing or old config files: | Error | The configuration file required to build documentation is missing from | your project. Add a configuration file to your project to make it build | successfully. Read more at | https://docs.readthedocs.io/en/stable/config-file/v2.html First of all, this just adds the basic template suggested under the above-mentioned link. Signed-off-by: Enrico Joerns --- .readthedocs.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..faed0469 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,9 @@ +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +sphinx: + configuration: docs/conf.py