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})`)
}
const cache = false
if (cache) {
const { cacheDependencies } = await import("setup-python/src/cache-dependencies")
await cacheDependencies("pip", pythonVersion)
}
// const cache = false
// if (cache) {
// const { cacheDependencies } = await import("setup-python/src/cache-dependencies")
// await cacheDependencies("pip", pythonVersion)
// }
}
if (GITHUB_ACTIONS) {