From 21b37a668dc4957174b19af8dfe65bd8b4cf3d36 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 16:30:16 +0000 Subject: [PATCH 1/3] Initial plan From 610fd182c3dfac655f127d63bfeb1ab704a9bf5a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 16:32:57 +0000 Subject: [PATCH 2/3] Switch to default Sphinx theme (alabaster) Co-authored-by: csett86 <1392875+csett86@users.noreply.github.com> --- docs/conf.py | 4 +--- tox.ini | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 107f20a..805e1fb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,8 +5,6 @@ import re import sys -import sphinx_rtd_theme - from sphinx.ext import autodoc sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir)) @@ -46,7 +44,7 @@ pygments_style = 'sphinx' -html_theme = 'sphinx_rtd_theme' +html_theme = 'alabaster' htmlhelp_basename = 'Graphite-Renderdoc' diff --git a/tox.ini b/tox.ini index c1f1039..f877bc9 100644 --- a/tox.ini +++ b/tox.ini @@ -49,7 +49,6 @@ deps = changedir = docs deps = Sphinx - sphinx_rtd_theme structlog commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html From 7d37b7137046091ebcd26df357381309ba627ff3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 16:47:58 +0000 Subject: [PATCH 3/3] Remove sphinx_rtd_theme from GitHub Actions workflow Co-authored-by: csett86 <1392875+csett86@users.noreply.github.com> --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5359c50..5a3750e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -87,7 +87,7 @@ jobs: - name: Install documentation dependencies run: | - python -m pip install sphinx sphinx_rtd_theme + python -m pip install sphinx - name: Build documentation run: |