Release 2022.06.29

This commit is contained in:
pukkandan 2022-06-29 06:54:41 +05:30
parent ae61d108dd
commit 9d339c41e2
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
5 changed files with 55 additions and 3 deletions

View file

@ -576,7 +576,9 @@ class YoutubeDL:
MIN_SUPPORTED, MIN_RECOMMENDED = (3, 6), (3, 7)
current_version = sys.version_info[:2]
if current_version < MIN_RECOMMENDED:
msg = 'Support for Python version %d.%d has been deprecated and will break in future versions of yt-dlp'
msg = ('Support for Python version %d.%d has been deprecated. '
'See https://github.com/yt-dlp/yt-dlp/issues/3764 for more details. '
'You will recieve only one more update on this version')
if current_version < MIN_SUPPORTED:
msg = 'Python version %d.%d is no longer supported'
self.deprecation_warning(