From eafe29ddac42bbff87f647ed3784131aa09ef5d0 Mon Sep 17 00:00:00 2001 From: Fahad Date: Mon, 9 Jun 2025 20:48:49 +0400 Subject: [PATCH] fix: update setup script to suggest Python 3.10 instead of 3.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since the minimum requirement is Python 3.10, suggest installing 3.10 rather than 3.12 to make it easier for users to meet the minimum requirements. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 8ea873d..5e9a563 100755 --- a/setup.sh +++ b/setup.sh @@ -32,10 +32,10 @@ if [ "$PYTHON_VERSION_MAJOR" -lt 3 ] || ([ "$PYTHON_VERSION_MAJOR" -eq 3 ] && [ echo "Please upgrade Python from https://python.org" echo "" echo "On macOS with Homebrew:" - echo " brew install python@3.12" + echo " brew install python@3.10" echo "" echo "On Ubuntu/Debian:" - echo " sudo apt update && sudo apt install python3.12 python3.12-venv" + echo " sudo apt update && sudo apt install python3.10 python3.10-venv" exit 1 fi