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: 1 addition & 1 deletion docs/api/rules_python/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Legacy toolchain; despite its name, it doesn't autodetect anything.

:::{deprecated} 0.34.0

Use {obj}`@rules_python//python/runtime_env_toolchain:all` instead.
Use {obj}`@rules_python//python/runtime_env_toolchains:all` instead.
:::
::::

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
:::{default-domain} bzl
:::
:::{bzl:currentfile} //python/runtime_env_toolchain:BUILD.bazel
:::{bzl:currentfile} //python/runtime_env_toolchains:BUILD.bazel
:::

# //python/runtime_env_toolchain
# //python/runtime_env_toolchains

::::{target} all

Expand Down
1 change: 1 addition & 0 deletions sphinxdocs/inventories/bazel_inventory.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ File bzl:type 1 rules/lib/File -
Label bzl:type 1 rules/lib/Label -
Target bzl:type 1 rules/lib/builtins/Target -
bool bzl:type 1 rules/lib/bool -
callable bzl:type 1 rules/lib/core/function -
config_common.FeatureFlagInfo bzl:type 1 rules/lib/toplevel/config_common#FeatureFlagInfo -
config_common.toolchain_type bzl:function 1 rules/lib/toplevel/config_common#toolchain_type -
ctx.actions bzl:obj 1 rules/lib/builtins/ctx#actions -
Expand Down
5 changes: 3 additions & 2 deletions sphinxdocs/private/sphinx.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,9 @@ def _run_sphinx(ctx, format, source_path, inputs, output_prefix):
# Not added to run_args because run_args is for debugging
args.add("--quiet") # Suppress stdout informational text

args.add("--jobs", "auto") # Build in parallel, if possible
run_args.extend(("--jobs", "auto"))
# Build in parallel, if possible
# Don't add to run_args: parallel building breaks interactive debugging
args.add("--jobs", "auto")
args.add("--fresh-env") # Don't try to use cache files. Bazel can't make use of them.
run_args.append("--fresh-env")
args.add("--write-all") # Write all files; don't try to detect "changed" files
Expand Down
Loading