Remove Debian buster from supported OS (#3483)

This commit is contained in:
Pascal Vizeli 2022-03-03 18:23:19 +01:00 committed by GitHub
parent 5fb2b99917
commit b451e555d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ from ...coresys import CoreSys
from ..const import UnsupportedReason
from .base import EvaluateBase
SUPPORTED_OS = ["Debian GNU/Linux 10 (buster)", "Debian GNU/Linux 11 (bullseye)"]
SUPPORTED_OS = ["Debian GNU/Linux 11 (bullseye)"]
def setup(coresys: CoreSys) -> EvaluateBase: