From 60f74d06463542f8eaf2d40e06dd8405d4113b93 Mon Sep 17 00:00:00 2001 From: Jan Schlosser Date: Tue, 12 May 2026 08:17:39 +0200 Subject: [PATCH] rules_score: sphinx_module for html should not forward needs The needs get forwarded by the custom needs rule, no need that the HTML does the very same. --- bazel/rules/rules_score/private/sphinx_module.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/rules/rules_score/private/sphinx_module.bzl b/bazel/rules/rules_score/private/sphinx_module.bzl index e92446db..219e1611 100644 --- a/bazel/rules/rules_score/private/sphinx_module.bzl +++ b/bazel/rules/rules_score/private/sphinx_module.bzl @@ -266,7 +266,7 @@ def _score_html_impl(ctx): tools = [sphinx_toolchain.html_merge_tool.files_to_run], ) return [ - DefaultInfo(files = depset(ctx.files.needs + [html_output])), + DefaultInfo(files = depset([html_output])), SphinxModuleInfo( html_dir = html_output, ),