1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Roland Mas <lolando@debian.org>
Date: Thu, 29 May 2025 17:28:46 +0200
Subject: Fix pip invocation
---
dxtbx/libtbx_refresh.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/dxtbx/libtbx_refresh.py b/dxtbx/libtbx_refresh.py
index eef867e..9981234 100644
--- a/dxtbx/libtbx_refresh.py
+++ b/dxtbx/libtbx_refresh.py
@@ -42,6 +42,7 @@ def _install_setup_readonly_fallback(package_name: str):
build_path,
"--no-build-isolation",
"--no-deps",
+ "--ignore-installed",
"-e",
root_path,
],
|