From df3aedc03982b63696dfd11cd3ee37b56ca4ba07 Mon Sep 17 00:00:00 2001 From: bashonly Date: Sun, 10 Aug 2025 03:41:32 -0500 Subject: [PATCH] [update] No deprecation warning for linux_aarch64_exe Authored by: bashonly --- yt_dlp/update.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/yt_dlp/update.py b/yt_dlp/update.py index c1ef0b4d51..ca69fbbada 100644 --- a/yt_dlp/update.py +++ b/yt_dlp/update.py @@ -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