Skip to content

Commit bfe240d

Browse files
committed
Fixed minimum version for sphinxcontrib-htmlhelp
Details: * An earlier commit increased the minimum version of sphinxcontrib-htmlhelp from 1.0.0 to 2.0.0 for all Python versions. However, 2.0.0 requires Python >= 3.6. Fixed that by using 1.0.0 as a minimum version for Python <=3.9 and 2.0.0 as a minimum version for Python >=3.10. That is consistent with Sphinx 4.2.0 which requires sphinxcontrib-htmlhelp>=2.0.0 also being used only for Python >=3.10. Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent e32e9a9 commit bfe240d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

minimum-constraints.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,8 @@ smmap2==2.0.1; python_version == '2.7'
270270
snowballstemmer==1.2.1
271271
sphinxcontrib-applehelp==1.0.0; python_version >= '3.4'
272272
sphinxcontrib-devhelp==1.0.0; python_version >= '3.4'
273-
sphinxcontrib-htmlhelp==2.0.0; python_version >= '3.4'
273+
sphinxcontrib-htmlhelp==1.0.0; python_version >= '3.4' and python_version <= '3.9'
274+
sphinxcontrib-htmlhelp==2.0.0; python_version >= '3.10'
274275
sphinxcontrib-jsmath==1.0.0; python_version >= '3.4'
275276
sphinxcontrib-qthelp==1.0.0; python_version >= '3.4'
276277
sphinxcontrib-serializinghtml==1.1.5; python_version >= '3.4'

0 commit comments

Comments
 (0)