Skip to content

Commit

Permalink
Use non-deprecated versions in examples (#724)
Browse files Browse the repository at this point in the history
jeffwidman authored Oct 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 5f2af21 commit f6cc428
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
@@ -70356,7 +70356,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
*/
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -101,7 +101,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
*/

0 comments on commit f6cc428

Please sign in to comment.