Skip to content

Commit

Permalink
🔧 De-duplicate upgrade path checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Dec 27, 2024
1 parent dbd9a35 commit b9b8ae7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/openforms/upgrades/upgrade_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def run_checks(self) -> bool:
UPGRADE_PATHS = {
"3.0": UpgradeConstraint(
valid_ranges={
VersionRange(minimum="2.8.0"),
VersionRange(minimum="2.8.2"),
},
scripts=["check_temporary_uploads", "check_api_groups_null"],
),
Expand All @@ -87,11 +87,6 @@ def run_checks(self) -> bool:
VersionRange(minimum="2.7.4"),
},
),
"3.0.0": UpgradeConstraint(
valid_ranges={
VersionRange(minimum="2.8.2"),
},
),
}


Expand Down

0 comments on commit b9b8ae7

Please sign in to comment.