From 06211122ad3075a865fecae5970f2dd991496b0e Mon Sep 17 00:00:00 2001
From: jkerdreux-imt <jerome.kerdreux@imt-atlantique.fr>
Date: Thu, 26 Sep 2024 19:24:37 +0200
Subject: [PATCH] Fix editable mode

---
 install.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/install.py b/install.py
index ecd4fa9c..f0816031 100644
--- a/install.py
+++ b/install.py
@@ -1,5 +1,5 @@
 """
-Bulk script to install all xAAL packages, use w/ caution. 
+Bulk script to install all xAAL packages, use w/ caution.
 """
 
 
@@ -32,7 +32,7 @@ def required():
 
 def setup_develop(path):
     title(path)
-    os.system('cd %s && uv pip install -e .' % path)
+    os.system('cd %s && uv pip install -e . --config-settings editable_mode=compat' % path)
     # os.system('cd %s && %s setup.py develop' % (path, PYTHON))
 
 
-- 
GitLab