From f3a88ca08488475bfc5cb6544ccf695d181c5086 Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Tue, 27 Feb 2024 11:48:02 -0500 Subject: [PATCH] fix: update .readthedocs.yaml Attempt to fix the build. It is unclear why this is failing, so simply attempting to match the following as closely as possible: https://docs.readthedocs.io/en/stable/config-file/v2.html The failure no longer has an error (which used to be around missing os), and the raw output is missing the call: > cat .readthedocs.yaml It's unclear what is breaking. --- .readthedocs.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index fd0e52242bf..5c03d8c70c0 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -6,7 +6,7 @@ version: 2 build: - os: "ubuntu-22.04" + os: ubuntu-22.04 tools: python: "3.8" @@ -15,6 +15,5 @@ sphinx: configuration: docs/conf.py python: - version: 3.8 install: - requirements: requirements/doc.txt