From c27cdb1c95e0c1fc25595909317f4faaef2e4276 Mon Sep 17 00:00:00 2001 From: Mikhail Sandakov Date: Wed, 28 Aug 2024 09:29:36 +0300 Subject: [PATCH] Allow distupgrade when PHP 7.3 installed --- ubuntu20to22/upgrader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu20to22/upgrader.py b/ubuntu20to22/upgrader.py index f4b13d6..e9949a9 100644 --- a/ubuntu20to22/upgrader.py +++ b/ubuntu20to22/upgrader.py @@ -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"),