Skip to content

Commit

Permalink
Update upgrade command for 2023.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iameskild committed Aug 3, 2023
1 parent b597ddd commit 14fe9da
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ def do_upgrade(config_filename, attempt_fixes=False):
UpgradeStep.upgrade(
config, start_version, __version__, config_filename, attempt_fixes
)
print(config.get("nebari_version"))
print(config.get("default_images"))

# Backup old file
backup_config_file(config_filename, f".{start_version or 'old'}")
Expand Down Expand Up @@ -478,8 +476,8 @@ def _version_specific_upgrade(
return config


class Upgrade_2023_5_2(UpgradeStep):
version = "2023.5.2"
class Upgrade_2023_7_2(UpgradeStep):
version = "2023.7.2"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
Expand Down

0 comments on commit 14fe9da

Please sign in to comment.