You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(update): Windows in-app update self-locked the uv venv
The menu/CLI update ran `uv tool install` in the foreground, but on
Windows this process is a child of the uv-venv python.exe that keeps
...\uv\tools\vortelio\Scripts open. uv then can't remove the old Scripts
("Access denied", os error 5) and leaves a corrupt, half-removed install
(uv tool list can't find the package). Route the Windows path through the
existing detached updater, which waits for this whole process tree to exit
before reinstalling, so nothing locks the venv. Unix keeps the foreground
path. Ship rebuilt 0.3.83 binary.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: vortelio-pip/pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project]
6
6
name = "vortelio"
7
-
version = "0.3.82"
7
+
version = "0.3.83"
8
8
description = "Local-first AI platform. Run LLMs, generate images & video, transcribe audio, create 3D — on your own machine. OpenAI & Ollama API compatible. Apache 2.0."
0 commit comments