diff --git a/dist/setup/index.js b/dist/setup/index.js index 37b247905..a303a4162 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -70014,7 +70014,7 @@ function writeExactPyPyVersionFile(installDir, resolvedPyPyVersion) { } exports.writeExactPyPyVersionFile = writeExactPyPyVersionFile; /** - * Python version should be specified explicitly like "x.y" (2.7, 3.6, 3.7) + * Python version should be specified explicitly like "x.y" (3.10, 3.11, etc) * "3.x" or "3" are not supported * because it could cause ambiguity when both PyPy version and Python version are not precise */ diff --git a/src/utils.ts b/src/utils.ts index 552f5895c..b98903bc6 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -90,7 +90,7 @@ export function writeExactPyPyVersionFile( } /** - * Python version should be specified explicitly like "x.y" (2.7, 3.6, 3.7) + * Python version should be specified explicitly like "x.y" (3.10, 3.11, etc) * "3.x" or "3" are not supported * because it could cause ambiguity when both PyPy version and Python version are not precise */