@1mancompany/onemancompany 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -347,7 +347,7 @@ ${green("What gets installed automatically:")}
347
347
  }
348
348
 
349
349
  info("Installing dependencies...");
350
- runShell("uv pip install -e .", { cwd: installDir });
350
+ runShell(`uv pip install -e . -p "${path.join(venvDir, isWindows ? "Scripts/python.exe" : "bin/python")}"`, { cwd: installDir });
351
351
 
352
352
  // ── Launch (directly via Python, all platforms) ────────────────────────
353
353
  const pythonBin = isWindows
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1mancompany/onemancompany",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The AI Operating System for One-Person Companies",
5
5
  "bin": {
6
6
  "onemancompany": "bin/cli.js"