From 364042946c6ed3fdfa4f1293e44a989af5f69cd5 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Fri, 24 Mar 2023 11:08:34 -0700 Subject: [PATCH] edge --- docker/Dockerfile | 5 +++-- setup.cfg | 1 + src/ytdl_sub/__init__.py | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b12cc7b6..63d2ce19 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,7 @@ RUN mkdir -p /config && \ g++ \ nano \ make \ - python3=~3.10 \ + "python3>=3.10" \ py3-pip \ fontconfig \ py3-setuptools && \ @@ -30,13 +30,14 @@ RUN mkdir -p /config && \ cd -; \ fi && \ # Install ytdl-sub, ensure it is installed properly - pip install --no-cache-dir ytdl_sub-*.whl && \ + python3 -m pip install --no-cache-dir ytdl_sub-*.whl && \ ytdl-sub -h && \ # Delete unneeded packages after install rm ytdl_sub-*.whl && \ apk del \ g++ \ make \ + py3-pip \ py3-setuptools ############################################################################### diff --git a/setup.cfg b/setup.cfg index 218ca950..2abb1bce 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,7 @@ classifiers = License :: Public Domain Environment :: Console Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 [options.entry_points] console_scripts = diff --git a/src/ytdl_sub/__init__.py b/src/ytdl_sub/__init__.py index b37d025a..94aae306 100644 --- a/src/ytdl_sub/__init__.py +++ b/src/ytdl_sub/__init__.py @@ -1,2 +1,2 @@ -__pypi_version__ = "2023.03.24.post4" -__local_version__ = "2023.03.24+90d6f71" +__pypi_version__ = "2023.03.24.post7" +__local_version__ = "2023.03.24+14e4a4b"