Skip to content

Commit

Permalink
fix(release-please): adapt version check (DEV-3363) (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Mar 5, 2024
1 parent a0be38e commit d04b731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsp_tools/cli/entry_point.py
Expand Up @@ -96,7 +96,7 @@ def _check_version() -> None:
return
latest = parse(response.json()["info"]["version"])
installed = parse(version("dsp-tools"))
if latest == installed:
if latest <= installed: # in the release-please PR, the installed version is always greater than the latest
return

msg = (
Expand Down

0 comments on commit d04b731

Please sign in to comment.