From ff7a91e07fd256f183ed725cf7151bb91191f520 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Tue, 7 May 2024 20:25:12 -0700 Subject: [PATCH] _venv Signed-off-by: Cary Phillips --- .github/workflows/website.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index d29adcc630..f86b8fe6b3 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -61,7 +61,10 @@ jobs: run: ./website/scripts/install_doxygen.sh ${DOXYGEN_VERSION} shell: bash - name: Install sphinx requirements - run: pip3 install -r website/requirements.txt + run: | + python3 -m venv _venv + source _venv/bin/activate + pip3 install -r website/requirements.txt - name: Configure run: cmake .. -DBUILD_WEBSITE=ON -DCMAKE_VERBOSE_MAKEFILE=ON working-directory: _build