Skip to content

Commit

Permalink
Allow distupgrade when PHP 7.3 installed
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Sandakov committed Aug 28, 2024
1 parent 50d069b commit c27cdb1
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 @@ -144,7 +144,7 @@ def get_check_actions(
if phase is Phase.FINISH:
return []

PHP_VERSIONS_SUPPORTED_BY_ALMA_8 = ["7.0"] + [str(php) for php in php.get_known_php_versions() if php >= version.PHPVersion("7.4")]
PHP_VERSIONS_SUPPORTED_BY_ALMA_8 = ["7.0"] + [str(php) for php in php.get_known_php_versions() if php >= version.PHPVersion("7.3")]

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

0 comments on commit c27cdb1

Please sign in to comment.