From 04dcbe2331fcc685768ee53976ee6ca674d36920 Mon Sep 17 00:00:00 2001 From: Pfitzer Date: Sat, 28 Sep 2024 15:06:17 +0200 Subject: [PATCH] Update yt-dlp requirement and bump version to 2.0.7 Upgraded the yt-dlp dependency to version 2024.7.7 to include the latest features and bug fixes. Also updated the project's version number to 2.0.7 to reflect these changes and ensure compatibility. --- setup.py | 2 +- youtube2mp3/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a9df483..2b045cc 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ author=__author__, author_email='michael@mp-development.de', license='MIT', - install_requires=['yt-dlp>=2024.5.27', 'mutagen>=1.47.0'], + install_requires=['yt-dlp>=2024.7.7', 'mutagen>=1.47.0'], keywords='youtube mp3', packages=find_packages(), python_requires='~=3.10, <4', diff --git a/youtube2mp3/__init__.py b/youtube2mp3/__init__.py index ed9f1e9..84bec6f 100644 --- a/youtube2mp3/__init__.py +++ b/youtube2mp3/__init__.py @@ -1,3 +1,3 @@ # __author__ = 'Michael Pfister' -__version__ = '2.0.6' +__version__ = '2.0.7'