mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-04-13 00:46:31 +00:00
[networking] Always add unsupported suffix on version mismatch (#12626)
Authored by: Grub4K
This commit is contained in:
parent
e67d786c7c
commit
95f8df2f79
2 changed files with 3 additions and 0 deletions
yt_dlp/networking
|
@ -21,9 +21,11 @@ if urllib3 is None:
|
|||
urllib3_version = tuple(int_or_none(x, default=0) for x in urllib3.__version__.split('.'))
|
||||
|
||||
if urllib3_version < (1, 26, 17):
|
||||
urllib3._yt_dlp__version = f'{urllib3.__version__} (unsupported)'
|
||||
raise ImportError('Only urllib3 >= 1.26.17 is supported')
|
||||
|
||||
if requests.__build__ < 0x023202:
|
||||
requests._yt_dlp__version = f'{requests.__version__} (unsupported)'
|
||||
raise ImportError('Only requests >= 2.32.2 is supported')
|
||||
|
||||
import requests.adapters
|
||||
|
|
|
@ -34,6 +34,7 @@ import websockets.version
|
|||
|
||||
websockets_version = tuple(map(int_or_none, websockets.version.version.split('.')))
|
||||
if websockets_version < (13, 0):
|
||||
websockets._yt_dlp__version = f'{websockets.version.version} (unsupported)'
|
||||
raise ImportError('Only websockets>=13.0 is supported')
|
||||
|
||||
import websockets.sync.client
|
||||
|
|
Loading…
Add table
Reference in a new issue