chore: list distribution releases by release date
Old releases should be popped from the left/top and new releases should be added to the right/bottom of any distro release list.
This commit is contained in:
parent
5eda6093f4
commit
7d514a9306
14 changed files with 58 additions and 58 deletions
|
@ -1,17 +1,17 @@
|
|||
# This file contains a list of package dependencies.
|
||||
[python]
|
||||
python3 = bullseye, bookworm, focal, jammy
|
||||
python3-pip = bullseye, bookworm, focal, jammy
|
||||
python3-pika = bullseye, bookworm, focal, jammy
|
||||
python3 = focal, bullseye, jammy, bookworm
|
||||
python3-pip = focal, bullseye, jammy, bookworm
|
||||
python3-pika = focal, bullseye, jammy, bookworm
|
||||
|
||||
[liquidsoap]
|
||||
# https://github.com/savonet/liquidsoap/blob/main/CHANGES.md
|
||||
liquidsoap = bullseye, bookworm, focal, jammy
|
||||
liquidsoap = focal, bullseye, jammy, bookworm
|
||||
|
||||
[ffmpeg]
|
||||
# Detect duration, silences and replaygain
|
||||
ffmpeg = bullseye, bookworm, focal, jammy
|
||||
ffmpeg = focal, bullseye, jammy, bookworm
|
||||
|
||||
[=development]
|
||||
# Generate fixtures
|
||||
ffmpeg = bullseye, bookworm, focal, jammy
|
||||
ffmpeg = focal, bullseye, jammy, bookworm
|
||||
|
|
|
@ -33,8 +33,8 @@ def test_analyze_playability_invalid_filepath():
|
|||
|
||||
|
||||
def test_analyze_playability_invalid_wma():
|
||||
# Liquisoap does not fail with wma files on bullseye, focal, jammy
|
||||
if distro.codename() in ("bullseye", "focal", "jammy"):
|
||||
# Liquisoap does not fail with wma files on focal, bullseye, jammy
|
||||
if distro.codename() in ("focal", "bullseye", "jammy"):
|
||||
return
|
||||
|
||||
with pytest.raises(UnplayableFileError):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue