From e0583cdaced859985dd1a74f977ac45643627ef4 Mon Sep 17 00:00:00 2001 From: Nathaniel van Diepen Date: Thu, 16 Apr 2026 14:18:14 -0600 Subject: [PATCH] Fix #167 --- codexctl/updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codexctl/updates.py b/codexctl/updates.py index c23d253..c8e550e 100644 --- a/codexctl/updates.py +++ b/codexctl/updates.py @@ -396,7 +396,7 @@ def uses_new_update_engine(version: str) -> bool: Returns: bool: If it uses the new update engine or not """ - return int(version.split(".")[0]) >= 3 and int(version.split(".")[1]) >= 11 + return tuple([int(x) for x in version.split(".")]) > (3, 11, 2, 5) @staticmethod def is_bootloader_boundary_downgrade(current_version: str, target_version: str) -> bool: