From 370822cdaa1e46ec9469513f30e4142e15a345fe Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Mon, 15 Jan 2024 16:45:01 -0500 Subject: [PATCH] Extend plugin version ranges down for Python 3.7 This uses narrow ranges, rather than pinning single versions, for two of the Sphinx plugins whose versions are recently pinned. This is so that plugin versions compatible with Python 3.7 (which GitPython still supports) can be selected. --- doc/requirements.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/requirements.txt b/doc/requirements.txt index 12cd19c1e..90449cd02 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,8 +1,8 @@ -sphinx==4.3.0 +sphinx == 4.3.0 sphinx_rtd_theme -sphinxcontrib-applehelp==1.0.4 -sphinxcontrib-devhelp==1.0.2 -sphinxcontrib-htmlhelp==2.0.1 -sphinxcontrib-qthelp==1.0.3 -sphinxcontrib-serializinghtml==1.1.5 +sphinxcontrib-applehelp >= 1.0.2, <= 1.0.4 +sphinxcontrib-devhelp == 1.0.2 +sphinxcontrib-htmlhelp >= 2.0.0, <= 2.0.1 +sphinxcontrib-qthelp == 1.0.3 +sphinxcontrib-serializinghtml == 1.1.5 sphinx-autodoc-typehints