feat: drop Liquidsoap 1.3 support

This commit is contained in:
jo 2022-09-09 20:53:58 +02:00 committed by Kyle Robbertze
parent ace9365e92
commit 5817750b62
7 changed files with 1 additions and 1054 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, 3, 3)
LIQUIDSOAP_MIN_VERSION = (1, 4, 0)
def parse_liquidsoap_version(version: str) -> Tuple[int, int, int]: