Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codexctl/updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading