From 6413becb4c75cb1ccecb02158c41a4bad6a29abb Mon Sep 17 00:00:00 2001 From: Tesshu Flower Date: Wed, 10 May 2023 11:42:23 -0400 Subject: [PATCH] Update readthedocs config to use python 3.11 See: https://github.com/readthedocs/readthedocs.org/issues/10290 Signed-off-by: Tesshu Flower --- .readthedocs.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 19c079e70..df350baea 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,6 +3,11 @@ # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" # Build documentation in the docs/ directory with Sphinx sphinx: builder: html @@ -13,6 +18,5 @@ formats: # Optionally set the version of Python and requirements required to build your # docs python: - # version: 3.7 install: - requirements: docs/requirements.txt