Skip to content

Commit

Permalink
[airbyte-ci] Allow too-new versions of airbyte-ci (#38784)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers authored Dec 2, 2024
1 parent 5f9d290 commit 68eb278
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def check_for_upgrade(
"""Check if the installed version of pipelines is up to date."""
current_command = " ".join(sys.argv)
latest_version = _get_latest_version()
is_out_of_date = latest_version != __installed_version__
is_out_of_date = latest_version > __installed_version__
if not is_out_of_date:
main_logger.info(f"airbyte-ci is up to date. Installed version: {__installed_version__}. Latest version: {latest_version}")
return
Expand Down

0 comments on commit 68eb278

Please sign in to comment.