From 51c6b3ef2ff568f5e449167b845cab21e4ce0a85 Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 18 Jan 2023 19:22:50 +0000 Subject: [PATCH] Allow sphinx-rtd-theme to pick the versions of sphinx & docutils From version 1.1.0 sphinx-rtd-theme adds upper bounds for compatible versions of sphinx and docutils. --- .github/workflows/publish-pages.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-pages.yml b/.github/workflows/publish-pages.yml index 68ed63f7..2bcee12c 100644 --- a/.github/workflows/publish-pages.yml +++ b/.github/workflows/publish-pages.yml @@ -30,11 +30,12 @@ jobs: python-version: "3.x" - name: Install Python packages - run: > + run: | pip install dnspython beautifulsoup4 requests \ - hatchling hatch-vcs sphinx sphinx_epytext \ - sphinx_rtd_theme sphinx-sitemap \ - sphinxcontrib-jquery + hatchling hatch-vcs + # Allow sphinx-rtd-theme to choose the versions of sphinx & docutils + pip install sphinx-rtd-theme + pip install sphinx-epytext sphinx-sitemap - name: Build run: |