From eea700f72889938b7cc15210a1857ad55825627b Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 16 Oct 2023 15:50:39 -0400 Subject: [PATCH] docs: Update RTD Config. RTD deprectade defining the python version in the python top-level setting. It now has to be part of the build OS which is a required setting. I also added graphviz here in-case we want to add diagrams in the aspect docs. --- .readthedocs.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 7cc9635..4eb6e55 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -10,8 +10,15 @@ sphinx: configuration: docs/conf.py fail_on_warning: true +# Set the version of python needed to build these docs. +build: + os: "ubuntu-22.04" + tools: + python: "3.8" + apt_packages: + - graphviz + # Optionally set the version of Python and requirements required to build your docs python: - version: "3.8" install: - requirements: requirements/docs.txt