From d032623de1e4b4da4becf3d9a321044488d9e3a1 Mon Sep 17 00:00:00 2001 From: dronperminov Date: Wed, 13 Sep 2023 18:30:30 +0300 Subject: [PATCH] force fix --- .github/check_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/check_version.py b/.github/check_version.py index b42092d..6c6f6c7 100644 --- a/.github/check_version.py +++ b/.github/check_version.py @@ -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