( venvPath: string )
| 121 | } |
| 122 | |
| 123 | export async function getVenvSitePackagesDirs( |
| 124 | venvPath: string |
| 125 | ): Promise<string[]> { |
| 126 | const pythonBin = getVenvPythonBin(venvPath); |
| 127 | return getSitePackagesDirs(pythonBin); |
| 128 | } |
| 129 | |
| 130 | export function resolveVendorDir() { |
| 131 | const vendorDir = process.env.VERCEL_PYTHON_VENDOR_DIR || '_vendor'; |
no test coverage detected