From 3f0d519f29464c8355476085a9701b2e67b8fb44 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 5 Apr 2026 20:27:35 +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 000000000..712862ba6 --- /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