-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbundle-python.mjs
More file actions
223 lines (210 loc) · 10.6 KB
/
Copy pathbundle-python.mjs
File metadata and controls
223 lines (210 loc) · 10.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/**
* bundle-python.mjs — stage the Python sidecar payload for electron-builder.
*
* Copies the project (pyproject.toml, uv.lock, the spyde package) and the
* platform `uv` binary into electron/resources/python. electron-builder then
* ships that dir as an extraResource (-> <app>/resources/python at runtime),
* where pythonEnv.ts runs `uv sync` into the user's writable data dir on first
* launch (tiny installer; the GPU-correct torch wheel is resolved by uv per
* machine).
*
* The venv / torch are NOT bundled; only the lock + source + uv. Run before the
* electron-builder step (npm run dist does this).
*
* uv binary: prefers a vendored copy at electron/vendor/uv/<platform>/uv[.exe];
* otherwise copies the `uv` found on PATH. CI should populate vendor/ with the
* pinned uv for each target OS.
*/
import { cpSync, existsSync, mkdirSync, rmSync, copyFileSync, chmodSync, readdirSync, readFileSync, writeFileSync } from 'fs'
import { join, dirname } from 'path'
import { fileURLToPath } from 'url'
import { execSync } from 'child_process'
const __dirname = dirname(fileURLToPath(import.meta.url))
const repoRoot = join(__dirname, '..', '..') // …/spyde
const pkgPath = join(__dirname, '..', 'package.json') // …/spyde/electron/package.json
const outDir = join(__dirname, '..', 'resources', 'python')
const isWin = process.platform === 'win32'
const uvName = isWin ? 'uv.exe' : 'uv'
function log(msg) { console.log(`[bundle-python] ${msg}`) }
/**
* Resolve the spyde package version to bake into the staged payload.
*
* The bundled source tree has NO `.git`, and spyde's pyproject.toml derives its
* version dynamically via setuptools_scm. Without git history, the first-launch
* `uv sync` would raise `LookupError: unable to detect version` and exit 1 (the
* packaged-app first-run crash). So we resolve the version HERE (in CI, git +
* tags are present) and write a `.spyde-version` marker; pythonEnv.ts reads it
* and exports SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SPYDE so the build succeeds.
*
* Prefer electron/package.json's `version` — release.yml verifies it equals the
* pushed git tag (e.g. "0.1.0"), so it's the authoritative, already-validated
* release version and a plain X.Y.Z is a valid PEP 440 version. Fall back to
* setuptools_scm only if package.json is unreadable.
*/
function resolveSpydeVersion() {
try {
const v = JSON.parse(readFileSync(pkgPath, 'utf8')).version
if (typeof v === 'string' && v.trim()) return v.trim()
} catch { /* fall through to setuptools_scm */ }
try {
// no-guess-dev (per pyproject) — e.g. "0.1.0" on a tag, "0.1.1.dev3+g<sha>"
// between tags. A PEP 440 dev version is still a valid pretend version.
const v = execSync('uv run python -m setuptools_scm', {
cwd: repoRoot, stdio: ['ignore', 'pipe', 'ignore'],
}).toString().trim()
if (v) return v
} catch { /* no git / no uv — leave marker unwritten */ }
return null
}
/**
* The `[tool.uv.workspace] members` of a pyproject, as plain relative paths.
*
* Deliberately a small regex rather than a TOML parser: this script has no
* dependencies, and the list is a literal array of quoted paths. A member the
* regex misses fails loudly at the copy below, not silently at the user's
* first launch.
*/
function workspaceMembers(pyprojectPath) {
const text = readFileSync(pyprojectPath, 'utf8')
// Up to the next section HEADER — a `[` at the start of a line. `[^[]*`
// stops at the `[` of the members ARRAY, which silently yields nothing.
const section = text.match(/\[tool\.uv\.workspace\][\s\S]*?(?=\r?\n\[|$)/)
if (!section) return []
const members = section[0].match(/members\s*=\s*\[([^\]]*)\]/)
if (!members) return []
return [...members[1].matchAll(/["']([^"']+)["']/g)].map((m) => m[1])
}
// Fresh staging dir.
rmSync(outDir, { recursive: true, force: true })
mkdirSync(outDir, { recursive: true })
// 1. Project metadata + lock (reproducible `uv sync`).
for (const f of ['pyproject.toml', 'uv.lock']) {
const src = join(repoRoot, f)
if (!existsSync(src)) throw new Error(`missing ${f} at repo root`)
copyFileSync(src, join(outDir, f))
log(`staged ${f}`)
}
// Pin the interpreter for the PACKAGED env only. WITHOUT this, first-launch
// `uv sync` picks the newest CPython (it grabbed 3.14), which has no CUDA torch
// wheels → setup fails. We write `.python-version` ONLY into the payload, never
// at the repo root: a root file would also hijack dev + the CI test matrix
// (every `uv run` re-creates the venv at this version, so `uv sync --python
// 3.10` then `uv run pytest` silently runs 3.12). Scoping it to the staged tree
// keeps 3.12 for shipped users while dev/CI stay free to pick their own Python.
const PAYLOAD_PYTHON = '3.12'
writeFileSync(join(outDir, '.python-version'), PAYLOAD_PYTHON + '\n', 'utf8')
log(`staged .python-version = ${PAYLOAD_PYTHON}`)
// 2. A PRE-BUILT spyde wheel — NOT the source tree.
// Building `spyde` from source on first launch is impossible when the app is
// installed read-only (e.g. C:\Program Files): setuptools' build_wheel runs
// egg_info, which writes `spyde.egg-info` INTO the source dir → "could not
// create 'spyde.egg-info': Access is denied", and `uv sync` exits 1. (This
// bit rc.2 AND rc.3; --no-editable does NOT help — a wheel build still writes
// egg_info into the tree.) So we build the wheel HERE, where the repo is
// writable, and ship the .whl. pythonEnv.ts installs it with
// `uv pip install --no-deps` after syncing the deps with --no-install-project,
// so NOTHING is built on the user's machine. spyde is pure-Python → one
// py3-none-any wheel works on every platform + Python we ship.
const wheelsDir = join(outDir, 'wheels')
mkdirSync(wheelsDir, { recursive: true })
// setuptools_scm can't see a version from the (git-less at build? no — CI has
// git) tree reliably across environments; pin the already-validated release
// version so the wheel's metadata matches the tag / package.json.
const wheelVersion = resolveSpydeVersion()
const scmEnv = wheelVersion
? { ...process.env, SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SPYDE: wheelVersion,
SETUPTOOLS_SCM_PRETEND_VERSION: wheelVersion }
: process.env
//
// --all-packages, because this repo is a uv WORKSPACE: `packages/de-shell`
// is a member and a path dependency of spyde. Building only the root project
// shipped a lock that points at a directory the payload does not contain, so
// first launch died before installing anything:
//
// error: Failed to determine installation plan
// Caused by: Distribution not found at: file:///…/packages/de-shell
//
// de-shell is a setuptools project too, so it cannot be built on the user's
// machine for exactly the reason spyde cannot — it ships as a wheel or not
// at all.
execSync(`uv build --wheel --all-packages --out-dir "${wheelsDir}"`, {
cwd: repoRoot, stdio: 'inherit', env: scmEnv,
})
const builtWheels = readdirSync(wheelsDir).filter((f) => f.endsWith('.whl'))
if (!builtWheels.length) throw new Error('uv build produced no wheels')
log(`staged ${builtWheels.length} wheel(s): ${builtWheels.join(', ')}`)
// 2b. The workspace members' own metadata. `uv sync` reads the workspace from
// the staged pyproject.toml, so every declared member directory has to
// EXIST even though nothing is built from it (the wheels above are
// installed instead). Only pyproject.toml is needed for discovery; the
// source is not staged, which also keeps it from being built by accident.
for (const member of workspaceMembers(join(repoRoot, 'pyproject.toml'))) {
const src = join(repoRoot, member, 'pyproject.toml')
if (!existsSync(src)) {
throw new Error(`workspace member ${member} has no pyproject.toml`)
}
mkdirSync(join(outDir, member), { recursive: true })
copyFileSync(src, join(outDir, member, 'pyproject.toml'))
log(`staged workspace member: ${member}`)
}
// 3. The uv binary.
const vendored = join(__dirname, '..', 'vendor', 'uv', process.platform, uvName)
let uvSrc = vendored
if (!existsSync(vendored)) {
try {
const onPath = execSync(isWin ? 'where uv' : 'command -v uv').toString().trim().split('\n')[0]
uvSrc = onPath
log(`vendor/ uv not found; using uv from PATH: ${onPath}`)
} catch {
throw new Error(
'no uv binary: add electron/vendor/uv/<platform>/uv or install uv on PATH')
}
}
const uvDst = join(outDir, uvName)
copyFileSync(uvSrc, uvDst)
if (!isWin) chmodSync(uvDst, 0o755)
log(`staged ${uvName}`)
// 3b. Vendored git (portable). Some dependencies are `git+https://…` sources
// (the cssfrancis/hyperspy fork), which `uv sync` resolves by shelling out
// to `git clone`. A clean user machine often has NO git on PATH → "Git
// operation failed" and first-launch setup dies. So ship a portable git in
// the payload (like uv above); pythonEnv.ts prepends its bin dir to PATH for
// the sync. Staged from electron/vendor/git/<platform>/ (a MinGit tree on
// Windows). Optional in DEV — if absent we log and skip, and the sync falls
// back to any git on PATH (the dev box has one). CI MUST populate vendor/git
// for a shippable installer.
const vendoredGit = join(__dirname, '..', 'vendor', 'git', process.platform)
if (existsSync(vendoredGit)) {
const gitDst = join(outDir, 'git')
cpSync(vendoredGit, gitDst, { recursive: true })
// Make the git executables runnable on posix (Windows ignores the mode).
if (!isWin) {
for (const sub of ['bin', 'libexec/git-core']) {
const d = join(gitDst, sub)
if (existsSync(d)) {
for (const f of readdirSync(d)) {
try { chmodSync(join(d, f), 0o755) } catch { /* best-effort */ }
}
}
}
}
log('staged vendored git')
} else {
log(`vendor/git/${process.platform} not found; NOT staging git — first-launch ` +
'`uv sync` will need a git on the user\'s PATH for git+https deps. ' +
'CI must populate electron/vendor/git/<platform>/ for a shippable build.')
}
// 4. Version marker: the staged tree has no `.git`, so setuptools_scm can't
// detect a version at first-launch `uv sync` time (-> LookupError, exit 1).
// Write the version resolved HERE (git present) so pythonEnv.ts can export
// SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SPYDE and the sync succeeds.
const spydeVersion = resolveSpydeVersion()
if (spydeVersion) {
const markerPath = join(outDir, '.spyde-version')
writeFileSync(markerPath, spydeVersion, 'utf8')
log(`staged .spyde-version = ${spydeVersion}`)
} else {
log('WARNING: could not resolve spyde version — .spyde-version NOT written; ' +
'first-launch `uv sync` may fail with a setuptools_scm LookupError')
}
log(`done → ${outDir}`)