From edd2c831edbb2bcc10f4fa9840e07982f59e58bf Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Mon, 11 Sep 2023 01:21:43 -0700 Subject: [PATCH] fix: remove pip caching from actions_python --- src/python/actions_python.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/python/actions_python.ts b/src/python/actions_python.ts index 61aeb0f1..57f9afee 100644 --- a/src/python/actions_python.ts +++ b/src/python/actions_python.ts @@ -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) {