From f67ab59bfc9fb1aab36d57b359e613bf83085235 Mon Sep 17 00:00:00 2001 From: edward wills Date: Mon, 2 Feb 2026 11:05:07 +0000 Subject: [PATCH] [RAA-4409]-[KM]-[Updated python version to 3.13]-[EW] --- README.md | 2 +- scripts/macos_setup_environment.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5cf22c3f2..18cce7f60 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ The contents of this repository are protected by Crown Copyright (C). ### Environment setup Currently, automation for setting up the right environment is only available for machines based on RedHatEnterpriseLinux (RHEL). Running the following will ensure your environment is ready for development. -It will install [pyenv](https://github.com/pyenv/pyenv), Python 3.10.8 and its dependencies (yum), create a virtual environment (named apigee), and ensure poetry is installed under it. +It will install [pyenv](https://github.com/pyenv/pyenv), Python 3.13 and its dependencies (yum), create a virtual environment (named apigee), and ensure poetry is installed under it. ``` $ make setup-environment ``` diff --git a/scripts/macos_setup_environment.sh b/scripts/macos_setup_environment.sh index 2eccaab60..62a14184c 100755 --- a/scripts/macos_setup_environment.sh +++ b/scripts/macos_setup_environment.sh @@ -50,7 +50,7 @@ echo "Installing python 3.13 with pyenv ..." if pyenv versions | grep -Fq "3.13" ; then echo "Pyenv has already got Python 3.13 installed." else - if pyenv install 3.10 ; then + if pyenv install 3.13 ; then echo "Pyenv installed Python 3.13 successfully." else echo "Pyenv did NOT install Python 3.13 successfully."