Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 3f0af19 commit 26638c9Copy full SHA for 26638c9
doc/make.py
@@ -2,7 +2,6 @@
2
3
from __future__ import print_function
4
import glob
5
-import multiprocessing
6
import os
7
import shutil
8
import sys
@@ -54,7 +53,7 @@ def html(buildername='html'):
54
53
if warnings_as_errors:
55
options = options + ' -W'
56
if os.system('sphinx-build -j %d %s -b %s -d build/doctrees . build/%s' % (
57
- multiprocessing.cpu_count(), options, buildername, buildername)):
+ 2, options, buildername, buildername)):
58
raise SystemExit("Building HTML failed.")
59
60
# Clean out PDF files from the _images directory
0 commit comments