From 18293a6b7321dbebfdb2f5f8f48d56deab0ead19 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 20 Oct 2025 23:03:23 +0200 Subject: [PATCH 1/2] Replace Sphinx themes with sphinx-book-theme --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 15f873c..53b75b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,8 +42,7 @@ optional-dependencies.docs = [ "pre-commit", "pyproject-fmt", "sphinx", - "sphinx-rtd-theme", - "sphinx_bootstrap_theme", + "sphinx-book-theme", ] optional-dependencies.test = [ "coverage", "pytest" ] urls."Source" = "https://github.com/max-models/template-python" From d9d5cd62eb8994829702a1d1235057d877dda63f Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 20 Oct 2025 23:12:30 +0200 Subject: [PATCH 2/2] Removed bootstrap theme --- docs/source/conf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 5cf7b3d..5a54542 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -5,8 +5,6 @@ import os import shutil -# At the top. -import sphinx_bootstrap_theme def copy_tutorials(app): src = os.path.abspath("../tutorials")