Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ ffmpy>=0.3.0
spotipy>=2.16.1
tldextract>=3.1.0
validators>=0.18.2
youtube-dl>=2021.6.6
yt-dlp>=2021.12.1
requests>=2.25.1
click>=7.1.2
2 changes: 1 addition & 1 deletion savify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__title__ = 'Savify'
__author__ = """Laurence Rawlings"""
__email__ = 'contact@laurencerawlings.com'
__version__ = '2.3.4'
__version__ = '2.4.0'
__license__ = 'MIT'
__docformat__ = 'restructuredtext en'

Expand Down
2 changes: 1 addition & 1 deletion savify/savify.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import validators
import tldextract
import requests
from youtube_dl import YoutubeDL
from yt_dlp import YoutubeDL
from ffmpy import FFmpeg, FFRuntimeError

from .utils import PathHolder, safe_path_string, check_env, check_ffmpeg, check_file, create_dir, clean
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.3.4
current_version = 2.4.0
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with open('README.rst') as readme_file:
readme = readme_file.read()

requirements = ['ffmpy>=0.3.0', 'spotipy>=2.16.1', 'tldextract>=3.1.0', 'validators>=0.18.2', 'youtube-dl>=2021.6.6',
requirements = ['ffmpy>=0.3.0', 'spotipy>=2.16.1', 'tldextract>=3.1.0', 'validators>=0.18.2', 'yt-dlp>=2021.12.1',
'requests>=2.25.1', 'click>=7.1.2']

setup_requirements = ['pytest-runner', ]
Expand Down Expand Up @@ -45,6 +45,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/LaurenceRawlings/savify',
version='2.3.4',
version='2.4.0',
zip_safe=False,
)