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."