Skip to content

Commit c692b36

Browse files
committed
Set default for Sphinx jobs / parallelism
1 parent e4b7ef4 commit c692b36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def create_parser():
1414
# flags / options
1515
parser.add_argument("-f", "--fail-on-warning", action="store_true")
1616
parser.add_argument("-n", "--nitpicky", action="store_true")
17-
parser.add_argument("-j", "--jobs", type=int)
17+
parser.add_argument("-j", "--jobs", type=int, default=1)
1818

1919
# extra build steps
2020
parser.add_argument("-i", "--index-file", action="store_true") # for PEP 0

0 commit comments

Comments
 (0)