fix(Windows, numpy): do not use 'uv' by default

This commit is contained in:
bigcat88 2025-07-05 11:43:16 +03:00
parent 948d2440a1
commit d2974f2de6
No known key found for this signature in database
GPG Key ID: 1F0BF0EC3CF22721

View File

@ -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',