fix: Solve ladybug problem on running npm install all on windows (#576)

* fix: Solve ladybug problem on running npm install all on windows

* pushed package
This commit is contained in:
Alex
2026-01-02 14:04:37 +01:00
committed by GitHub
parent 16a7fa4bf5
commit effaa681a9
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "auto-claude-ui",
"version": "2.7.2-beta.12",
"version": "2.7.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "auto-claude-ui",
"version": "2.7.2-beta.12",
"version": "2.7.2",
"hasInstallScript": true,
"license": "AGPL-3.0",
"dependencies": {
+3 -2
View File
@@ -27,10 +27,11 @@ function run(cmd, options = {}) {
}
// Find Python 3.12+
// Prefer 3.12 first since it has the most stable wheel support for native packages
function findPython() {
const candidates = isWindows
? ['py -3.14', 'py -3.13', 'py -3.12', 'python3.14', 'python3.13', 'python3.12', 'python3', 'python']
: ['python3.14', 'python3.13', 'python3.12', 'python3', 'python'];
? ['py -3.12', 'py -3.13', 'py -3.14', 'python3.12', 'python3.13', 'python3.14', 'python3', 'python']
: ['python3.12', 'python3.13', 'python3.14', 'python3', 'python'];
for (const cmd of candidates) {
try {