From 7821d79da1a7f5c3d04783635cf4e411f902ca78 Mon Sep 17 00:00:00 2001 From: Nick Spaargaren Date: Fri, 20 Dec 2024 09:37:36 +0000 Subject: [PATCH 1/3] Remove sphinx-action from build step and build normally --- .github/workflows/ubuntu.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 46af38f2d..e9cdea596 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -39,10 +39,10 @@ jobs: pip install -r requirements.txt - name: Build - uses: rickstaa/sphinx-action@master - with: - docs-folder: "./docs" - build-command: "sphinx-build -q -W -b dirhtml -d _build/doctrees . _build/html" + run: | + cd docs + sphinx-build -q -W -b dirhtml -d _build/doctrees . _build/html + cd ../ # Upload performance is awful on the many small files our build generates, # so it's compressed locally before uploading From b3e74cb912709e0d8aead7fc73d1fb235f37c029 Mon Sep 17 00:00:00 2001 From: Nick Spaargaren Date: Fri, 20 Dec 2024 10:07:10 +0000 Subject: [PATCH 2/3] Remove deprecated HTML 4 emitter --- docs/conf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 73242edb0..a770adaff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,8 +75,6 @@ def _load_data(self, env, data_source, encoding): 'videos/prague/2018/tackling-technical-debt-in-the-docs-louise-fahey.rst', ] -html4_writer = True - # We use these *local* environment variables for private info like free ticket links cfp_variables = {} From e717ecd6be2607ff389f99b109892f2cd801d27b Mon Sep 17 00:00:00 2001 From: Nick Spaargaren Date: Tue, 24 Dec 2024 08:16:54 +0000 Subject: [PATCH 3/3] Revert "Remove deprecated HTML 4 emitter" This reverts commit b3e74cb912709e0d8aead7fc73d1fb235f37c029. --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index a770adaff..73242edb0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,6 +75,8 @@ def _load_data(self, env, data_source, encoding): 'videos/prague/2018/tackling-technical-debt-in-the-docs-louise-fahey.rst', ] +html4_writer = True + # We use these *local* environment variables for private info like free ticket links cfp_variables = {}