Skip to content

Commit

Permalink
Fix tests for Sphinx 7.4 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner authored Jul 20, 2024
1 parent 244375f commit 8c97fef
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Release 2.0.6 (unreleased)
==========================

* Fix tests for Sphinx 7.4 and later.

Release 2.0.5 (2024-01-13)
==========================

Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/htmlhelp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def write_param(name: str, value: str) -> None:
f.write('</UL>')
for (key, group) in index:
for title, (refs, subitems, key_) in group:
write_index(title, refs, subitems)
write_index(title, refs, subitems) # type: ignore[arg-type]
f.write('</UL>\n')


Expand Down
1 change: 1 addition & 0 deletions tests/roots/test-basic/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
project = 'Python'
1 change: 1 addition & 0 deletions tests/roots/test-hhc/conf.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
project = 'Python'
html_short_title = "Sphinx's documentation"

0 comments on commit 8c97fef

Please sign in to comment.