remove pypy input

This commit is contained in:
Dmitry Shibanov 2022-02-21 14:50:31 +03:00
parent 7f80679172
commit fe5cc5b5b4
3 changed files with 2 additions and 26 deletions

View file

@ -191,13 +191,5 @@ export async function findPythonVersion(
version: string,
architecture: string
): Promise<InstalledVersion> {
switch (version.toUpperCase()) {
case 'PYPY2':
return usePyPy('2', architecture);
case 'PYPY3':
// keep pypy3 pointing to 3.6 for backward compatibility
return usePyPy('3.6', architecture);
default:
return await useCpythonVersion(version, architecture);
}
return await useCpythonVersion(version, architecture);
}