@vercel/python 5.0.0 → 5.0.1

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/dist/index.js +5 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -2804,6 +2804,7 @@ async function pipInstall(pipPath, workPath, args) {
2804
2804
  const cmdArgs = [
2805
2805
  "install",
2806
2806
  "--disable-pip-version-check",
2807
+ "--no-compile",
2807
2808
  "--target",
2808
2809
  target,
2809
2810
  ...args
@@ -3091,7 +3092,10 @@ var build = async ({
3091
3092
  ".pnpm-store/**",
3092
3093
  "**/node_modules/**",
3093
3094
  "**/.next/**",
3094
- "**/.nuxt/**"
3095
+ "**/.nuxt/**",
3096
+ "**/.venv/**",
3097
+ "**/venv/**",
3098
+ "**/__pycache__/**"
3095
3099
  ];
3096
3100
  const globOptions = {
3097
3101
  cwd: workPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/python",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "main": "./dist/index.js",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",
@@ -19,7 +19,7 @@
19
19
  "@types/jest": "27.4.1",
20
20
  "@types/node": "14.18.33",
21
21
  "@types/which": "3.0.0",
22
- "@vercel/build-utils": "11.0.0",
22
+ "@vercel/build-utils": "12.1.0",
23
23
  "cross-env": "7.0.3",
24
24
  "execa": "^1.0.0",
25
25
  "fs-extra": "11.1.1",