aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-core
diff options
context:
space:
mode:
authorSilico_Biomancer <BlueDrink9@users.noreply.github.com>2024-07-08 09:47:14 +1200
committerGitHub <noreply@github.com>2024-07-07 23:47:14 +0200
commit2be2600f9b5a61b0c6109a3fb161b3abe75e5195 (patch)
treeaa2bf75d7d8fd41d2eb370916a3de8dabcbd1e5b /lua/mason-core
parentfeat(pypi): improve resolving suitable python version (#1725) (diff)
downloadmason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.tar
mason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.tar.gz
mason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.tar.bz2
mason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.tar.lz
mason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.tar.xz
mason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.tar.zst
mason-2be2600f9b5a61b0c6109a3fb161b3abe75e5195.zip
fix(pypi): allow access to system site packages by default (#1584)
Co-authored-by: William Boman <william@redwill.se>
Diffstat (limited to 'lua/mason-core')
-rw-r--r--lua/mason-core/installer/managers/pypi.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/mason-core/installer/managers/pypi.lua b/lua/mason-core/installer/managers/pypi.lua
index e9d54559..8dab25d9 100644
--- a/lua/mason-core/installer/managers/pypi.lua
+++ b/lua/mason-core/installer/managers/pypi.lua
@@ -125,7 +125,7 @@ local function create_venv(pkg)
log.fmt_debug("Found python3 installation version=%s, executable=%s", target.version, target.executable)
ctx.stdio_sink.stdout "Creating virtual environment…\n"
- return ctx.spawn[target.executable] { "-m", "venv", VENV_DIR }
+ return ctx.spawn[target.executable] { "-m", "venv", "--system-site-packages", VENV_DIR }
end
---@param ctx InstallContext
@@ -165,6 +165,7 @@ local function pip_install(pkgs, extra_args)
"pip",
"--disable-pip-version-check",
"install",
+ "--ignore-installed",
"-U",
extra_args or vim.NIL,
pkgs,