From f2b42ef00ec8270a7738b7f0683662d90678aaa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Sat, 12 Jul 2025 01:52:17 +0300 Subject: [PATCH] Windows installer build in editable mode --- WINDOWS_INSTALL.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WINDOWS_INSTALL.bat b/WINDOWS_INSTALL.bat index 914217e..32a9386 100644 --- a/WINDOWS_INSTALL.bat +++ b/WINDOWS_INSTALL.bat @@ -230,7 +230,7 @@ if errorlevel 1 ( :: Install setup requirements echo Installing setup requirements... -%PYTHON_CONSOLE_PATH% -m pip install --upgrade setuptools setuptools-scm wheel sphinx hatchling --no-warn-script-location +%PYTHON_CONSOLE_PATH% -m pip install --upgrade setuptools setuptools-scm wheel sphinx hatchling editables --no-warn-script-location if errorlevel 1 ( echo Failed to install setup requirements. pause @@ -250,7 +250,7 @@ if errorlevel 1 ( echo Checking and installing project dependencies... if exist %PYPROJECT_FILE% ( echo Installing project from pyproject.toml... - %PYTHON_CONSOLE_PATH% -m pip install . --no-warn-script-location + %PYTHON_CONSOLE_PATH% -m pip install -e . --no-warn-script-location if errorlevel 1 ( echo Failed to install from pyproject.toml. pause