From dd5adebcdc76ce1fc70f8feb24b0c34eb2cb10c7 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Mon, 18 Jul 2022 15:43:54 +0200 Subject: [PATCH] C++ docs: pin the markdown version to fix build error in CI: ``` Extension error (sphinx_markdown_tables): Handler for event 'source-read' threw an exception (exception: __init__() missing 1 required positional argument: 'config') ``` --- api/cpp/docs/Pipfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/cpp/docs/Pipfile b/api/cpp/docs/Pipfile index 8b6735d40ad..ef689e7043a 100644 --- a/api/cpp/docs/Pipfile +++ b/api/cpp/docs/Pipfile @@ -15,6 +15,8 @@ sphinx = "4.5.0" exhale = "0.2.4" myst_parser = "0.17.2" sphinx-markdown-tables = "0.0.15" +# Workaround for https://github.com/ryanfox/sphinx-markdown-tables/issues/36 +markdown = "==3.3.7" [requires] python_version = "3"