Skip to content

Commit b68ff56

Browse files
Apply batched suggestions from code review
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 6d7ba57 commit b68ff56

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,8 +759,8 @@ def build(self) -> None:
759759
maketargets = [f"{maketarget}-html"]
760760
else:
761761
maketargets = [maketarget]
762-
if self.includes_html and self.build_meta.version_tuple >= (3, 9):
763-
# Since 3.9, the plain autobuild targets only build non-HTML
762+
if self.includes_html:
763+
# The plain autobuild targets only build non-HTML
764764
# (gh-139436), but a combined build needs HTML.
765765
maketargets.append(f"{maketarget}-html")
766766
logging.info("Running make %s", " ".join(maketargets))

0 commit comments

Comments
 (0)