@vercel/python 6.7.0 → 6.9.0
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.
- package/dist/index.js +2 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -4004,11 +4004,9 @@ function installGlobalCleanupHandlers() {
|
|
|
4004
4004
|
};
|
|
4005
4005
|
process.on("SIGINT", () => {
|
|
4006
4006
|
killAll();
|
|
4007
|
-
process.exit(130);
|
|
4008
4007
|
});
|
|
4009
4008
|
process.on("SIGTERM", () => {
|
|
4010
4009
|
killAll();
|
|
4011
|
-
process.exit(143);
|
|
4012
4010
|
});
|
|
4013
4011
|
process.on("exit", () => {
|
|
4014
4012
|
killAll();
|
|
@@ -4323,6 +4321,7 @@ var build = async ({
|
|
|
4323
4321
|
const framework = config?.framework;
|
|
4324
4322
|
let spawnEnv;
|
|
4325
4323
|
let projectInstallCommand;
|
|
4324
|
+
(0, import_build_utils8.debug)(`workPath: ${workPath}`);
|
|
4326
4325
|
workPath = await downloadFilesInWorkPath({
|
|
4327
4326
|
workPath,
|
|
4328
4327
|
files: originalFiles,
|
|
@@ -4542,7 +4541,7 @@ var build = async ({
|
|
|
4542
4541
|
(0, import_build_utils8.debug)(`Installing ${runtimeDep}`);
|
|
4543
4542
|
await uv.pip({
|
|
4544
4543
|
venvPath,
|
|
4545
|
-
projectDir: entryDirectory,
|
|
4544
|
+
projectDir: (0, import_path7.join)(workPath, entryDirectory),
|
|
4546
4545
|
args: ["install", runtimeDep]
|
|
4547
4546
|
});
|
|
4548
4547
|
(0, import_build_utils8.debug)("Entrypoint is", entrypoint);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/python",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.9.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"smol-toml": "1.5.2",
|
|
32
32
|
"vitest": "2.1.4",
|
|
33
33
|
"which": "3.0.0",
|
|
34
|
-
"@vercel/build-utils": "13.3.
|
|
34
|
+
"@vercel/build-utils": "13.3.3",
|
|
35
35
|
"@vercel/error-utils": "2.0.3"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|