1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-08-17 18:08:30 +00:00

[update] No deprecation warning for linux_aarch64_exe

Authored by: bashonly
This commit is contained in:
bashonly 2025-08-10 03:41:32 -05:00
parent c4616a3f56
commit df3aedc039
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0

View File

@ -159,6 +159,10 @@ def _get_system_deprecation():
f'{variant} (the PyInstaller-bundled executable for the Linux armv7l platform)',
'issues/13976', STOP_MSG)
# Temporary until linux_aarch64_exe is built with Python >=3.10 instead of Python 3.9
if variant == 'linux_aarch64_exe':
return None
if sys.version_info > MIN_RECOMMENDED:
return None