From 461680a67b845510f6b89794bd44705ab666ba2a Mon Sep 17 00:00:00 2001 From: Lindsey Gray Date: Tue, 19 Nov 2024 20:45:09 -0600 Subject: [PATCH] fix(docs): sudo to install pandoc and graphviz --- .readthedocs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d858432ce..e4f58caaa 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -12,8 +12,8 @@ build: python: "3.12" jobs: post_install: - - pip install '.[dev]' - - apt update && apt install -y pandoc graphviz + - python -m pip install '.[dev]' + - sudo apt update && sudo apt install -y pandoc graphviz # You can also specify other tool versions: # nodejs: "19" # rust: "1.64"