From f6cc428f535856f9c23558d01765a42a4d6cf758 Mon Sep 17 00:00:00 2001
From: Jeff Widman <jeff@jeffwidman.com>
Date: Mon, 16 Oct 2023 02:01:43 -0700
Subject: [PATCH] Use non-deprecated versions in examples (#724)

---
 dist/setup/index.js | 2 +-
 src/utils.ts        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/setup/index.js b/dist/setup/index.js
index 4f9ca50c..b9717687 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -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
  */
diff --git a/src/utils.ts b/src/utils.ts
index c9d4f99b..db563d0f 100644
--- a/src/utils.ts
+++ b/src/utils.ts
@@ -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
  */