From 2c5a6d58b320980c12a173926c83f898fba6559f Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Wed, 21 Feb 2024 06:40:00 -0800 Subject: [PATCH] Fix: Fix requirements install for RTD Issue: RELENG-5171 Signed-off-by: Andrew Grimberg Change-Id: Id9ee39d08b7aeeb86df488d2f8866167b278e654 --- .readthedocs.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index a49ea6e5..caca0752 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -26,5 +26,7 @@ build: python: install: - - requirements: requirements-docs.txt - - {path: ., method: pip} + - extra_requirements: + - .[docs] + path: . + method: pip -- 2.16.6