From 6f02274dc4608d2566a9e612b7367073594952c2 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Mon, 27 Mar 2023 09:30:22 -0400 Subject: [PATCH] docs: suppress epub mimetype warnings (#1081) --- docs/source/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index cfec6191..58bff26c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -96,3 +96,7 @@ breathe_projects = dict( todo_include_todos = True subprocess.run('doxygen', shell=True, cwd=source_dir) + +# disable epub mimetype warnings +# https://github.com/readthedocs/readthedocs.org/blob/eadf6ac6dc6abc760a91e1cb147cc3c5f37d1ea8/docs/conf.py#L235-L236 +suppress_warnings = ["epub.unknown_project_files"]