This commit is contained in:
Deepak Dahiya
2022-04-11 09:35:26 +00:00
committed by GitHub
parent 8925e56ea4
commit 72e7b2061f
23 changed files with 110 additions and 142 deletions
+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';