Skip to content

Commit b829442

Browse files
HanSur94claude
andcommitted
fix(ci): add --force-reinstall to install.bat local source install
Ensures the current source code is installed even if a cached or PyPI version of matlab-mcp-python exists. Without this, CI picks up the old published version which lacks streamablehttp transport. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 215c132 commit b829442

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ if defined OFFLINE (
315315
) else (
316316
if exist "%SOURCE_DIR%pyproject.toml" (
317317
echo Installing from local source...
318-
pip install "%SOURCE_DIR%." %PIP_TRUST% --no-cache-dir --quiet
318+
pip install "%SOURCE_DIR%." %PIP_TRUST% --no-cache-dir --force-reinstall --quiet
319319
) else (
320320
echo Installing from PyPI...
321321
pip install matlab-mcp-python %PIP_TRUST% --quiet

0 commit comments

Comments
 (0)