From 5cdfb194dbc81ad231ea2ca7949cfe61a7d7c1c9 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Tue, 4 Oct 2022 15:36:45 -0700 Subject: [PATCH] dev: Avoid sphinx-markdown-tables 0.0.16 as it declares an incorrect dep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See . With the downgrade of Sphinx on 3.6 and 3.7 caused by "dev: Require flake8 ≥4.0.0" (352b8d7), this incorrect dep declaration was causing issues because Pip thought things were compatible when in reality the docs build didn't work on those Python versions. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 71a45abf..83874f8d 100644 --- a/setup.py +++ b/setup.py @@ -133,7 +133,7 @@ def find_namespaced_packages(namespace): "sphinx>=3", "sphinx-argparse ~=0.3", "sphinx-autobuild", - "sphinx-markdown-tables", + "sphinx-markdown-tables !=0.0.16", "sphinx_rtd_theme", "types-docutils", "types-setuptools",