From 609ecfb715a63529419fdce4de2e268d4e328bf9 Mon Sep 17 00:00:00 2001 From: Sven Sager Date: Wed, 18 Feb 2026 15:55:28 +0100 Subject: [PATCH] fix(deb): Use default sphinx theme The `sphinx_rtd_theme` ist not available in debian packages. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index bcfa948..4d87093 100755 --- a/debian/rules +++ b/debian/rules @@ -7,7 +7,7 @@ export PYBUILD_NAME=revpimodio2 override_dh_auto_build: dh_auto_build - PYTHONPATH=. python3 -m sphinx -b html -d docs/_build/.doctrees -N docs docs/_build/html + PYTHONPATH=. python3 -m sphinx -b html -d docs/_build/.doctrees -N docs docs/_build/html -D html_theme=alabaster override_dh_clean: rm -rf docs/_build