Skip to content

Commit

Permalink
Set default for Sphinx jobs / parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jun 8, 2021
1 parent e4b7ef4 commit c692b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def create_parser():
# flags / options
parser.add_argument("-f", "--fail-on-warning", action="store_true")
parser.add_argument("-n", "--nitpicky", action="store_true")
parser.add_argument("-j", "--jobs", type=int)
parser.add_argument("-j", "--jobs", type=int, default=1)

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

0 comments on commit c692b36

Please sign in to comment.