From c153185b333363281f519d0c02289fee5c04c2f3 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 22 Feb 2023 09:53:24 -0800 Subject: [PATCH] [DOCKER] Relax ffmpeg version requirement (#465) --- docker/Dockerfile | 2 +- src/ytdl_sub/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 56d8f2c5..c80f584f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,7 +18,7 @@ RUN mkdir -p /config && \ py3-setuptools && \ # Install edge ffmpeg, ensure it is properly installed apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \ - ffmpeg=5.1.2-r8 && \ + "ffmpeg>5.1" && \ ffmpeg -version && \ # Install phantomjs if using x86_64, ensure it is properly installed if [[ $(uname -m) == "x86_64" ]]; then \ diff --git a/src/ytdl_sub/__init__.py b/src/ytdl_sub/__init__.py index a23675ef..38c8858f 100644 --- a/src/ytdl_sub/__init__.py +++ b/src/ytdl_sub/__init__.py @@ -1,2 +1,2 @@ -__pypi_version__ = "2023.02.20.post12" -__local_version__ = "2023.02.20+5035825" +__pypi_version__ = "2023.02.22" +__local_version__ = "2023.02.22+40d5517"