From 47a600827532086952a983ddf0063a66eb8d59db Mon Sep 17 00:00:00 2001 From: Sam Wu Date: Wed, 27 Sep 2023 12:46:52 -0600 Subject: [PATCH] replace build.image with build.os in the .readthedocs.yaml config (#474) https://docs.readthedocs.io/en/stable/config-file/v2.html build.image (which is implicitly used if neither is specified) will be deprecated in October 2023 --- .readthedocs.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 43a0890c9..4192a0418 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -6,9 +6,13 @@ version: 2 sphinx: configuration: docs/conf.py -formats: [htmlzip] +formats: [htmlzip, pdf, epub] python: - version: "3.8" install: - requirements: docs/.sphinx/requirements.txt + +build: + os: ubuntu-22.04 + tools: + python: "3.8"