Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Unreleased
==========

- Dependencies: Unblock newer versions of Sphinx
- Dependencies: Updated to ``sphinx-autobuild==2025.8.25``
- Enabled parallel builds by updating theme and using ``--jobs auto``


2.1.2 - 2024/02/28
Expand Down
4 changes: 1 addition & 3 deletions common-build/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
###############################################################################

docutils>=0.14

# Most recent 2024.2.4 has errors on live reloading.
sphinx-autobuild==2021.3.14
sphinx-autobuild==2025.8.25

# These versions should match the Read The Docs environment (please update if
# you notice this is not the case)
Expand Down
2 changes: 1 addition & 1 deletion common-build/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ PYTHON = python3
PIP = $(PYTHON) -m pip
SPHINXBUILD = $(ENV_DIR)/bin/sphinx-build
SPHINXAUTOBUILD = $(ENV_DIR)/bin/sphinx-autobuild
AUTOBUILD_OPTS = --watch $(TOP_DIR)/src --re-ignore '^(?!.+\.(?:rst|md|mmd|html|css|js|py|conf)$$)' --open-browser --delay 0
AUTOBUILD_OPTS = --watch $(TOP_DIR) --re-ignore '^(?!.+\.(?:rst|md|mmd|html|css|js|py|conf)$$)' --open-browser --delay 0 --jobs auto
BUILD_DIR = $(LOCAL_DIR)/.build
SPHINX_ARGS = . $(BUILD_DIR)
SPHINX_OPTS = -W -n
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx>=3,<9
crate-docs-theme
crate-docs-theme>=0.42.0