From 2c36c6ec675e928ef6657c62ef89622150b7a621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ka=C4=9Fan=20Can=20=C5=9Eit?= Date: Sun, 18 Jan 2026 18:07:24 +0300 Subject: [PATCH] CI: Add python3-furo package for documentation build The Sphinx configuration uses furo theme for mobile responsive support and dark mode. Without this package, the build falls back to agogo theme which has poor mobile support. Fixes #5243 --- src/scripts/ci/gha_linux_packages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/ci/gha_linux_packages.py b/src/scripts/ci/gha_linux_packages.py index 874210c17dc..04466505ae0 100755 --- a/src/scripts/ci/gha_linux_packages.py +++ b/src/scripts/ci/gha_linux_packages.py @@ -138,6 +138,7 @@ def gha_linux_packages(target, compiler): packages.append('doxygen') packages.append('python3-docutils') packages.append('python3-sphinx') + packages.append('furo') return packages