Skip to content

Commit 810e209

Browse files
committed
build(release): restore changelog_news target to fix docs build
1 parent 1b9ba66 commit 810e209

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

tools/private/release/BUILD.bazel

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@ load("@rules_python//python:defs.bzl", "py_binary", "py_library")
22

33
package(default_visibility = ["//visibility:public"])
44

5+
py_library(
6+
name = "changelog_news",
7+
srcs = ["changelog_news.py"],
8+
)
9+
510
py_library(
611
name = "release_lib",
7-
srcs = glob(["*.py"]),
12+
srcs = glob(
13+
["*.py"],
14+
exclude = ["changelog_news.py"],
15+
),
816
deps = [
17+
":changelog_news",
918
"@dev_pip//packaging",
1019
],
1120
)

0 commit comments

Comments
 (0)