Skip to content

Commit

Permalink
Update Python version in the dev environment script. (#31416)
Browse files Browse the repository at this point in the history
* Update Python version in the dev environment script.

* fixup
  • Loading branch information
tvalentyn authored Jun 11, 2024
1 parent e3dec52 commit 6a24b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions local-env-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ if [ "$kernelname" = "Linux" ]; then
exit
fi

for ver in 3.8 3.9 3.10 3.11 3; do
for ver in 3.8 3.9 3.10 3.11 3.12 3; do
apt install --yes python$ver-venv
done

Expand Down Expand Up @@ -89,7 +89,7 @@ elif [ "$kernelname" = "Darwin" ]; then
echo "Installing openjdk@8"
brew install openjdk@8
fi
for ver in 3.8 3.9 3.10 3.11; do
for ver in 3.8 3.9 3.10 3.11 3.12; do
if brew ls --versions python@$ver > /dev/null; then
echo "python@$ver already installed. Skipping"
brew info python@$ver
Expand Down

0 comments on commit 6a24b07

Please sign in to comment.