Skip to content

Commit 94f6af7

Browse files
authored
Merge pull request #857 from webknjaz/maintenance/parallelize-sphinx
Enable parallelism in Sphinx
2 parents 072c72c + a5ada1b commit 94f6af7

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

noxfile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ def build(session, autobuild=False):
2626

2727
session.run(
2828
command, *extra_args,
29-
# FIXME: uncomment once the theme is fixed
30-
# Ref: https://github.com/pypa/pypa-docs-theme/issues/17
31-
# "-j", "auto", # parallelize the build
29+
"-j", "auto", # parallelize the build
3230
"-b", "html", # use HTML builder
3331
"-n", # nitpicky warn about all missing references
3432
"-W", # Treat warnings as errors.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sphinx==3.2.0
22
sphinx-autobuild==0.7.1
3-
sphinx-inline-tabs==2020.10.19b4
3+
sphinx-inline-tabs==2021.3.19b5
44
git+https://github.com/python/python-docs-theme.git#egg=python-docs-theme
55
git+https://github.com/pypa/pypa-docs-theme.git#egg=pypa-docs-theme

0 commit comments

Comments
 (0)