From 086b1686d7d6a896c7a0093c3b25c3d00547c06b Mon Sep 17 00:00:00 2001 From: John Strunk Date: Thu, 11 May 2023 20:05:17 -0400 Subject: [PATCH] Fix readthedocs build by updating python version Due to the release of a new version of urllib, the Python version that was used to build the docs needed to be updated. Signed-off-by: John Strunk --- .readthedocs.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 19c079e7..a9e981cb 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,16 +3,15 @@ # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 -# Build documentation in the docs/ directory with Sphinx +build: + os: ubuntu-22.04 + tools: + python: "3.11" sphinx: builder: html configuration: docs/conf.py -# Optionally build your docs in additional formats such as PDF formats: - pdf -# Optionally set the version of Python and requirements required to build your -# docs python: - # version: 3.7 install: - requirements: docs/requirements.txt