Use non-deprecated versions in examples

This commit is contained in:
Jeff Widman 2023-08-29 16:14:13 -07:00
parent f97b83114c
commit 333415443b
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js vendored
View file

@ -70014,7 +70014,7 @@ function writeExactPyPyVersionFile(installDir, resolvedPyPyVersion) {
} }
exports.writeExactPyPyVersionFile = writeExactPyPyVersionFile; 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 * "3.x" or "3" are not supported
* because it could cause ambiguity when both PyPy version and Python version are not precise * because it could cause ambiguity when both PyPy version and Python version are not precise
*/ */

View file

@ -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 * "3.x" or "3" are not supported
* because it could cause ambiguity when both PyPy version and Python version are not precise * because it could cause ambiguity when both PyPy version and Python version are not precise
*/ */