From c3ff92bcb007d820871e34fa9ff9702f6432b2d4 Mon Sep 17 00:00:00 2001 From: comrumino Date: Fri, 5 Jan 2024 19:48:30 -0600 Subject: [PATCH] Added required settings build.os and build.tools that were missing from .readthedocs.yml --- .readthedocs.yml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index a36db8a1..338b424c 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,23 +1,21 @@ -# .readthedocs.yml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - # Required version: 2 +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build all formats +formats: all + # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py -# Build documentation with MkDocs -#mkdocs: -# configuration: mkdocs.yml - -# Optionally build your docs in additional formats such as PDF and ePub -formats: all - -# Optionally set the version of Python and requirements required to build your docs +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: - version: 3.7 install: - requirements: docs/requirements.txt