Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit b4ceee5

Browse files
author
Matthias Koeppe
committed
sage_setup.docbuild: In the workaround, do not go through build_many to build serially
1 parent 804ebd7 commit b4ceee5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sage_setup/docbuild/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,8 @@ def _wrapper(self, name, *args, **kwds):
354354

355355
# Trac #31344: Work around crashes from multiprocessing
356356
if sys.platform == 'darwin':
357-
build_many(build_other_doc, L, 1)
357+
for target in L:
358+
build_other_doc(target)
358359
else:
359360
build_many(build_other_doc, L)
360361
logger.warning("Elapsed time: %.1f seconds."%(time.time()-start))

0 commit comments

Comments
 (0)