From d6b8500fdd53224e7544918d3e1ff8af3bcb1f91 Mon Sep 17 00:00:00 2001 From: nsirletti Date: Sat, 16 May 2020 15:07:16 +0200 Subject: [PATCH] Suppress Sphinx warnings about MIME types other than .rst --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 813417bae..7b538e70e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -102,6 +102,9 @@ exclude_trees = ['.build'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' +# List of Sphinx warnings that will not be raised +suppress_warnings = ['epub.unknown_project_files'] + # Options for HTML output # -----------------------