From e87621f43fc2bb1fef2d99eebc69a7ca468612be Mon Sep 17 00:00:00 2001 From: jessebot Date: Fri, 3 May 2024 13:35:11 +0200 Subject: [PATCH] switch to using python 3.12 everywhere --- .config/bash/minimal.sh | 2 +- .config/bash/path.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/bash/minimal.sh b/.config/bash/minimal.sh index 54c5aa3..7769783 100644 --- a/.config/bash/minimal.sh +++ b/.config/bash/minimal.sh @@ -7,7 +7,7 @@ source ~/.config/bash/history.sh # Pathing # # -------------------------------------------------------------------------- # # python version is subject to change -export PYTHON_VERSION="3.11" +export PYTHON_VERSION="3.12" # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Linux PATH ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # if [[ $(uname) == *"Linux"* ]]; then diff --git a/.config/bash/path.sh b/.config/bash/path.sh index ed50b2b..622a90c 100644 --- a/.config/bash/path.sh +++ b/.config/bash/path.sh @@ -63,7 +63,7 @@ if [[ $(uname) == *"Darwin"* ]]; then if [ ! -f "/usr/local/bin/python" ]; then # this will link python3.11 to python which will fix poetry issues # ref: https://stackoverflow.com/a/74582011/3547184 - ln -s -f /usr/local/bin/python3.11 /usr/local/bin/python + ln -s -f /usr/local/bin/python3.12 /usr/local/bin/python fi fi