From a8235700d905a8596136d9670134a56a4265b282 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 5 Apr 2026 20:27:36 +0100 Subject: [PATCH] Add ReadTheDocs config with Python 3.12 Without this file, ReadTheDocs defaults to Python 3.11 which is no longer supported. Co-Authored-By: Claude Opus 4.6 (1M context) --- .readthedocs.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..712862ba --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,17 @@ +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.12" + +python: + install: + - method: pip + path: . + extra_requirements: + - docs + +sphinx: + configuration: docs/conf.py + fail_on_warning: false