We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Doc/dist/
make
1 parent 2323166 commit 773646dCopy full SHA for 773646d
build_docs.py
@@ -746,6 +746,10 @@ def build(self) -> None:
746
(self.checkout / "Doc" / "Makefile").write_text(text, encoding="utf-8")
747
748
self.setup_indexsidebar()
749
+ if self.build_meta.version_tuple < (3, 10):
750
+ # The Makefile is broken, and the fix,
751
+ # python/cpython#145571 didn't make it into 3.9 in time
752
+ (self.checkout / "Doc" / "dist").mkdir(exist_ok=True)
753
run_with_logging((
754
"make",
755
"-C",
0 commit comments