From fce0d9e88e46e4a6d89cb4c4508ec4269e5c5561 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Sun, 6 Jul 2025 02:23:31 +0300 Subject: [PATCH] fix(Windows, numpy): do not use 'uv' by default (#1971) --- glob/manager_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glob/manager_core.py b/glob/manager_core.py index 104541c2..323451b5 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -1745,7 +1745,7 @@ def read_config(): 'http_channel_enabled': False, 'preview_method': manager_funcs.get_current_preview_method(), 'git_exe': '', - 'use_uv': manager_util.use_uv, + 'use_uv': manager_util.use_uv and platform.system() != "Windows", # temporary disable on Windows by default 'channel_url': DEFAULT_CHANNEL, 'default_cache_as_channel_url': False, 'share_option': 'all',