From 65879a50f503ab4e3ae93d6c8438abe037ab1717 Mon Sep 17 00:00:00 2001 From: Maxwell Frank <92897870+MaxFrank13@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:44:15 -0400 Subject: [PATCH] fix: read the docs config (#2581) --- .readthedocs.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 899ee38b7..e6abca6d4 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,16 +1,22 @@ # .readthedocs.yml -# Read the Docs configuration file +# Read the Docs configuration file for Sphinx projects # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required: the version of this file's schema. version: 2 +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-latest + tools: + python: "3.11" + # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py # Optionally set the version of Python and requirements required to build your docs python: - version: "3.8" + version: "3.11" install: - requirements: requirements/docs.txt