From 8abe373d145965b05b69685b20d76a934233fae8 Mon Sep 17 00:00:00 2001 From: Ryan Clary <9618975+mrclary@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:41:56 -0800 Subject: [PATCH] Skip checking for updates on unsupported platforms --- spyder/plugins/updatemanager/widgets/update.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spyder/plugins/updatemanager/widgets/update.py b/spyder/plugins/updatemanager/widgets/update.py index afc20fbf6f8..3cc7b7f7020 100644 --- a/spyder/plugins/updatemanager/widgets/update.py +++ b/spyder/plugins/updatemanager/widgets/update.py @@ -54,6 +54,7 @@ not is_conda_env(sys.prefix) and osp.exists(osp.join(get_path('stdlib'), 'EXTERNALLY-MANAGED')) ) + or sys.platform not in ('linux', 'darwin', 'win32') # Supported platforms )