feat: drop Liquidsoap 1.1 support

This commit is contained in:
jo 2022-09-09 20:52:26 +02:00 committed by Kyle Robbertze
parent 7d514a9306
commit ace9365e92
7 changed files with 1 additions and 1040 deletions

View file

@ -3,7 +3,7 @@ from subprocess import PIPE, run
from typing import Tuple
LIQUIDSOAP_VERSION_RE = re.compile(r"(?:Liquidsoap )?(\d+).(\d+).(\d+)")
LIQUIDSOAP_MIN_VERSION = (1, 1, 1)
LIQUIDSOAP_MIN_VERSION = (1, 3, 3)
def parse_liquidsoap_version(version: str) -> Tuple[int, int, int]: