Skip to content

Commit

Permalink
force fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dronperminov committed Sep 13, 2023
1 parent 2ba8378 commit d032623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/check_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

assert match is not None, "New version doesn't match the pattern"
assert args.tag.startswith("v") and args.tag[1:] == args.new_version, "Tag value should be equal to version with `v` in the beginning"
assert parse_version(args.old_version) < parse_version(args.new_version), "New version should be greater than old version"
assert parse_version(args.old_version) <= parse_version(args.new_version), "New version should be greater than old version"

print("Version is correct") # noqa

0 comments on commit d032623

Please sign in to comment.