Skip to content

Commit

Permalink
Merge pull request #2 from plesk/allow-distupgrade-with-php73
Browse files Browse the repository at this point in the history
Allow distupgrade when PHP 7.3 installed
  • Loading branch information
SandakovMM authored Aug 28, 2024
2 parents 50d069b + c27cdb1 commit 95b4460
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 95b4460

Please sign in to comment.