From 2bb9f0e6927f26c5ae840c750e561182293bbe7b Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Mon, 7 Aug 2023 09:28:12 -0400 Subject: [PATCH] docs: update readthedocs.org config RTD is removing the option to use pre-installed packages. Instead, we just need to tell them where our Python requirements.txt file is located so that they'll install exactly those packages. Signed-off-by: Jeff Squyres --- .readthedocs.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index f26f84cf5f7..44e0bbac5a7 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -13,6 +13,10 @@ build: tools: python: "3.10" +python: + install: + - requirements: docs/requirements.txt + # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py