We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 693f0b6 + e0583cd commit ea83e7fCopy full SHA for ea83e7f
1 file changed
codexctl/updates.py
@@ -396,7 +396,7 @@ def uses_new_update_engine(version: str) -> bool:
396
Returns:
397
bool: If it uses the new update engine or not
398
"""
399
- 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)
400
401
@staticmethod
402
def is_bootloader_boundary_downgrade(current_version: str, target_version: str) -> bool:
0 commit comments