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