Skip to content

Commit

Permalink
ci: filter pre-releases
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Dec 19, 2023
1 parent 002126a commit 837784b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,12 @@ def pc_bump(session: nox.Session) -> None:
for proj, (old_version, space) in old_versions.items():
if proj not in versions:
versions[proj] = session.run(
"lastversion", "--at=github", "--format=tag", proj, silent=True
"lastversion",
"--at=github",
"--format=tag",
"--exclude=alpha|beta|rc",
proj,
silent=True,
).strip()
new_version = versions[proj]

Expand Down

0 comments on commit 837784b

Please sign in to comment.