From 47e33a6a8b80b1fa1263e4334fb782d4b8927ad5 Mon Sep 17 00:00:00 2001 From: Aaron David Schneider Date: Fri, 27 Oct 2023 14:51:01 +0200 Subject: [PATCH] update readthedocs yaml --- .readthedocs.yaml | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d4640d6..d669943 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,2 +1,32 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + # You can also specify other tool versions: + # nodejs: "19" + # rust: "1.64" + # golang: "1.19" + +# Build documentation in the "doc/source" directory with Sphinx +sphinx: + configuration: doc/source/conf.py + +# Optionally build your docs in additional formats such as PDF and ePub +# formats: +# - pdf +# - epub + +# Optional but recommended, declare the Python requirements required +# to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: - version: 3.8 + install: + - requirements: doc/requirements.txt