Skip to content

Commit 713ce7a

Browse files
authored
Merge pull request #13468 from pytest-dev/patchback/backports/8.3.x/1498ba3aa57be19d649e64ee2db0d90ee315abad/pr-13467
[PR #13467/1498ba3a backport][8.3.x] scripts/release: add missing `build` to `towncrier` call
2 parents 26c3722 + 44052d6 commit 713ce7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def pre_release(
121121

122122
def changelog(version: str, write_out: bool = False) -> None:
123123
addopts = [] if write_out else ["--draft"]
124-
check_call(["towncrier", "--yes", "--version", version, *addopts])
124+
check_call(["towncrier", "build", "--yes", "--version", version, *addopts])
125125

126126

127127
def main() -> None:

0 commit comments

Comments
 (0)