Skip to content

Commit

Permalink
Add upgrade command for 2023.11.1 (#2103)
Browse files Browse the repository at this point in the history
  • Loading branch information
iameskild authored Nov 13, 2023
1 parent 7d582f1 commit 6bdeb2a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,20 @@ def _version_specific_upgrade(
return config


class Upgrade_2023_11_1(UpgradeStep):
version = "2023.11.1"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
):
rich.print("\n ⚠️ Deprecation Warning ⚠️")
rich.print(
f"-> ClearML, Prefect and kbatch are no longer supported in Nebari version [green]{self.version}[/green] and will be uninstalled."
)

return config


__rounded_version__ = str(rounded_ver_parse(__version__))

# Manually-added upgrade steps must go above this line
Expand Down

0 comments on commit 6bdeb2a

Please sign in to comment.