Compare commits

..
Author SHA1 Message Date
Deepak Dahiya 281b9d65e0 New package-lock 2022-04-11 12:58:25 +00:00
Deepak Dahiya 72e7b2061f Lincesed 2022-04-11 09:35:26 +00:00
Deepak Dahiya 8925e56ea4 new build 2022-04-11 07:34:15 +00:00
Deepak Dahiya 86c4aa8d46 Updated @actions/cache 2022-04-11 07:28:36 +00:00
27 changed files with 20623 additions and 28535 deletions
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+8856 -7182
View File
File diff suppressed because one or more lines are too long
+9812 -7358
View File
File diff suppressed because one or more lines are too long
+1948 -13985
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "setup-python",
"version": "3.1.1",
"version": "3.1.0",
"private": true,
"description": "Setup python action",
"main": "dist/index.js",
+6 -9
View File
@@ -35,15 +35,12 @@ export async function findPyPyVersion(
));
if (!installDir) {
({
installDir,
resolvedPythonVersion,
resolvedPyPyVersion
} = await pypyInstall.installPyPy(
pypyVersionSpec.pypyVersion,
pypyVersionSpec.pythonVersion,
architecture
));
({installDir, resolvedPythonVersion, resolvedPyPyVersion} =
await pypyInstall.installPyPy(
pypyVersionSpec.pypyVersion,
pypyVersionSpec.pythonVersion,
architecture
));
}
const pipDir = IS_WINDOWS ? 'Scripts' : 'bin';