diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-09 15:35:17 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-09 15:37:15 +0530 |
commit | b5c5d84f60addd49a010a1f485d28f1b41676631 (patch) | |
tree | 82f33b6f3d12e309a65dae6d92c2c0d9b12d7103 /yt_dlp/YoutubeDL.py | |
parent | aa75e51f992c206b07ab4de592f11a871827bf4b (diff) |
Revert "[build] Build Windows x86 version with py3.8"
This reverts commit aa75e51f992c206b07ab4de592f11a871827bf4b.
See #390
This is being reverted instead of modified due to #388
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 92c078a39..ad96cebcd 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -472,7 +472,8 @@ class YoutubeDL(object): if sys.version_info < (3, 6): self.report_warning( - 'Python version %d.%d is not supported! Please update to Python 3.6 or above' % sys.version_info[:2]) + 'Support for Python version %d.%d have been deprecated and will break in future versions of yt-dlp! ' + 'Update to Python 3.6 or above' % sys.version_info[:2]) def check_deprecated(param, option, suggestion): if self.params.get(param) is not None: |