Skip to content

Commit

Permalink
Update updates.py to fix version 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayy001 authored Jan 2, 2025
1 parent 505d361 commit a31e624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codexctl/updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def download_version(
if int(version_major) >= 3:
BASE_URL = BASE_URL_V3

if int(version_minor) >= 11:
if int(version_minor) > 11 or update_version == "3.11.3.3":
version_external = True

if version_external:
Expand Down

0 comments on commit a31e624

Please sign in to comment.