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

10
dist/setup/index.js vendored
View file

@ -57135,15 +57135,7 @@ function pythonVersionToSemantic(versionSpec) {
exports.pythonVersionToSemantic = pythonVersionToSemantic;
function findPythonVersion(version, architecture) {
return __awaiter(this, void 0, void 0, function* () {
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 yield useCpythonVersion(version, architecture);
}
return yield useCpythonVersion(version, architecture);
});
}
exports.findPythonVersion = findPythonVersion;