From d8c7a76a7873d2bec9ac48ee677368e465388814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85ke=20Forslund?= Date: Thu, 5 Nov 2020 09:27:03 +0100 Subject: [PATCH] mock XDG during doc build --- doc/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index fe063789ff..618b865876 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -59,7 +59,8 @@ autodoc_mock_imports = list(autodoc_mock_imports) + [ 'past', 'serial', 'websocket', - 'speech_recognition' + 'speech_recognition', + 'xdg' ] templates_path = ['_templates']