Skip to content

Commit

Permalink
Allow distupgrade with PHP 7.0 and any later version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Sandakov committed Jan 28, 2025
1 parent e74f46f commit 9150ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ubuntu20to22/upgrader.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def get_check_actions(
if phase is Phase.FINISH:
return []

PHP_VERSIONS_SUPPORTED_BY_UBUNTU_22 = ["7.0"] + [str(php) for php in php.get_known_php_versions() if php >= version.PHPVersion("7.2")]
PHP_VERSIONS_SUPPORTED_BY_UBUNTU_22 = [str(php) for php in php.get_known_php_versions() if php >= version.PHPVersion("7.0")]

return [
actions.AssertMinPleskVersion("18.0.44"),
Expand Down

0 comments on commit 9150ba4

Please sign in to comment.