Skip to content

Commit

Permalink
Merge pull request #294 from Chia-Network/fix-bump-version
Browse files Browse the repository at this point in the history
fix bump-version.py, to always bump wheel version
  • Loading branch information
arvidn authored Oct 27, 2023
2 parents 6907ae9 + 9cb928f commit 5bc7565
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bump-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ def crates_with_changes() -> Set[str]:
diff = os.popen(f"git diff {tag} -- {c}").read().strip()
if len(diff) > 0:
ret.add(c)
# the python wheel is the top-level build target, we always want to bump its
# version
ret.add("wheel")
return ret

def update_cargo(name: str, crates: Set[str]) -> None:
Expand Down

0 comments on commit 5bc7565

Please sign in to comment.