From 3202af72c33b5f25853a9377a0fc2571b3a81a38 Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Tue, 24 Jan 2023 14:42:16 +0100 Subject: [PATCH 1/2] Do not use sphinxcontrib-jquery but anticipate a fixed release --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 514f18164..ffbeb6d78 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,7 +47,7 @@ python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.* install_requires = sphinx >=1.6,<7 docutils <0.19 - sphinxcontrib-jquery >=3.0.0 + sphinxcontrib-jquery >=2.0.0,!=3.0.0 tests_require = pytest From 871cc24d9d56b17915f9f64a1eae0624746fb988 Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Tue, 24 Jan 2023 15:50:22 +0100 Subject: [PATCH 2/2] Only require sphinxcontrib-jquery on Python 3 (Sphinx 6 isn't released for 2.7) --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index ffbeb6d78..b68065ef0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,7 +47,7 @@ python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.* install_requires = sphinx >=1.6,<7 docutils <0.19 - sphinxcontrib-jquery >=2.0.0,!=3.0.0 + sphinxcontrib-jquery >=2.0.0,!=3.0.0 ; python_version > '3' tests_require = pytest