From 4de2a110edde87d345d571f1a2be4bcf17dc96d1 Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Thu, 2 Jul 2020 22:30:25 +0200 Subject: [PATCH] Use latest sphinx version --- .github/workflows/website.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 04b2a3d..20c5c95 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -13,9 +13,9 @@ jobs: - name: Check out repository code uses: actions/checkout@v2 - name: Install sphinx - run: sudo apt-get install python3-sphinx python3-sphinxcontrib.bibtex python3-sphinx-rtd-theme + run: sudo apt-get install python3-virtualenv virtualenv - name: Build html documentation - run: cd doc && make html && cd - + run: virtualenv -p /usr/bin/python3 venv && source venv/bin/activate && pip install sphinx sphinx_rtd_theme sphinxcontrib.bibtex && cd doc && make html && cd - - name: Deploy uses: peaceiris/actions-gh-pages@v2.4.0 env: