From 0ab8d731fc042c9254a6c83ed155676b85580c5f Mon Sep 17 00:00:00 2001 From: srcarter3 Date: Wed, 2 Sep 2020 11:57:54 -0600 Subject: [PATCH] Update sphinx_build_deploy.yml add a call to update sphinx before running it to build the documentation --- .github/workflows/sphinx_build_deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sphinx_build_deploy.yml b/.github/workflows/sphinx_build_deploy.yml index d41a945..3e10dfb 100644 --- a/.github/workflows/sphinx_build_deploy.yml +++ b/.github/workflows/sphinx_build_deploy.yml @@ -23,6 +23,10 @@ jobs: sudo apt install pandoc python -m pip install --upgrade pip pip install -r requirements.txt + + - name: Update Sphinx + run: | + pip install -U sphinx - name: Build Sphinx documentation run: |