Skip to content

Commit 8c97fef

Browse files
authored
Fix tests for Sphinx 7.4 (#20)
1 parent 244375f commit 8c97fef

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Release 2.0.6 (unreleased)
2+
==========================
3+
4+
* Fix tests for Sphinx 7.4 and later.
5+
16
Release 2.0.5 (2024-01-13)
27
==========================
38

sphinxcontrib/htmlhelp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def write_param(name: str, value: str) -> None:
286286
f.write('</UL>')
287287
for (key, group) in index:
288288
for title, (refs, subitems, key_) in group:
289-
write_index(title, refs, subitems)
289+
write_index(title, refs, subitems) # type: ignore[arg-type]
290290
f.write('</UL>\n')
291291

292292

tests/roots/test-basic/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
project = 'Python'

tests/roots/test-hhc/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
project = 'Python'
12
html_short_title = "Sphinx's documentation"

0 commit comments

Comments
 (0)