From e6bb20f720e3095039dac5d7d8146fc8dfa2e41a Mon Sep 17 00:00:00 2001 From: Prakash Maheshwaran <73785492+Prakashmaheshwaran@users.noreply.github.com> Date: Mon, 26 May 2025 11:46:47 -0400 Subject: [PATCH] Update setup.sh to py3.13 (#2450) --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 12784dda..1f3da1c6 100755 --- a/setup.sh +++ b/setup.sh @@ -270,7 +270,7 @@ choose_python_version_or_fail() { # Py --list-paths # This will output which paths are being used for Python 3.11 # Windows users need to poetry env use {{ Py --list-paths with 3.11}} - poetry env use python3.11 || { echo "Error: Python 3.11 is not installed. If you're on Windows, check out https://github.com/python-poetry/poetry/issues/2117 to unblock yourself"; exit 1; } + poetry env use python3.13 || { echo "Error: Python 3.13 is not installed. Please install Python 3.13 and try again."; exit 1; } }