fix: remove pip caching from actions_python

This commit is contained in:
Amin Yahyaabadi 2023-09-11 01:21:43 -07:00
parent d3a4b94794
commit edd2c831ed
1 changed files with 5 additions and 5 deletions

View File

@ -38,11 +38,11 @@ export async function setupActionsPython(version: string, _setupDir: string, arc
info(`Successfully set up ${installed.impl} (${pythonVersion})`) info(`Successfully set up ${installed.impl} (${pythonVersion})`)
} }
const cache = false // const cache = false
if (cache) { // if (cache) {
const { cacheDependencies } = await import("setup-python/src/cache-dependencies") // const { cacheDependencies } = await import("setup-python/src/cache-dependencies")
await cacheDependencies("pip", pythonVersion) // await cacheDependencies("pip", pythonVersion)
} // }
} }
if (GITHUB_ACTIONS) { if (GITHUB_ACTIONS) {