From e2b25fe7cede5e8c94f7a054c12f1c979d76b9a1 Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Wed, 9 Oct 2024 06:18:45 -0400 Subject: [PATCH] Drop support for Debian 11 Bullseye (#5335) --- supervisor/resolution/evaluations/operating_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/resolution/evaluations/operating_system.py b/supervisor/resolution/evaluations/operating_system.py index 6664b9cca..4093507fb 100644 --- a/supervisor/resolution/evaluations/operating_system.py +++ b/supervisor/resolution/evaluations/operating_system.py @@ -5,7 +5,7 @@ from ...coresys import CoreSys from ..const import UnsupportedReason from .base import EvaluateBase -SUPPORTED_OS = ["Debian GNU/Linux 11 (bullseye)", "Debian GNU/Linux 12 (bookworm)"] +SUPPORTED_OS = ["Debian GNU/Linux 12 (bookworm)"] def setup(coresys: CoreSys) -> EvaluateBase: