Skip to content

Commit 5a1434b

Browse files
authored
fix: workaround issue in lastversion with OpenSSL (#669)
1 parent dd81945 commit 5a1434b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _bump(session: nox.Session, name: str, repository: str, branch: str, script:
116116
session.install("lastversion", "requests")
117117
lastversion_args = []
118118
if branch:
119-
lastversion_args.extend(("--branch", branch))
119+
lastversion_args.extend(("--branch", branch, "--only", f"{branch}."))
120120
lastversion_args.append(repository)
121121
version = session.run("lastversion", *lastversion_args, log=False, silent=True).strip()
122122
else:

0 commit comments

Comments
 (0)