From 9fbc8cf32ad779b8d1cf240862e173306de214a2 Mon Sep 17 00:00:00 2001 From: James Falcon Date: Fri, 25 Mar 2022 14:03:35 -0500 Subject: [PATCH] docs: Re-order readthedocs install Order building cloud-init before building doc-requirements.txt. Building '.' invokes a 'pip install --upgrade .' which happens to also re-install the latest versions of previously pinned docs dependencies --- .readthedocs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 46af8ee72b0..7769bc55b7a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,6 +3,6 @@ version: 2 formats: all python: - install: - - requirements: doc-requirements.txt - - path: . + install: + - path: . + - requirements: doc-requirements.txt