[cleanup] Misc (#13852)

Closes #13815
Authored by: seproDev, injust, bashonly

Co-authored-by: Justin Su <[email protected]>
Co-authored-by: bashonly <[email protected]>
This commit is contained in:
sepro
2025-08-11 03:18:28 +00:00
committed by GitHub
co-authored by Justin Su bashonly
parent e98695549e
commit 5e4ceb35cf
11 changed files with 39 additions and 15 deletions
+5 -1
View File
@@ -154,11 +154,15 @@ def _get_system_deprecation():
'issues/13856', STOP_MSG)
# Temporary until linux_armv7l executable builds are discontinued
if variant in ('linux_armv7l_exe'):
if variant == 'linux_armv7l_exe':
return EXE_MSG_TMPL.format(
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