switch to using python 3.12 everywhere

This commit is contained in:
JesseBot 2024-05-03 13:35:11 +02:00
parent a76ad24fff
commit e87621f43f
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ source ~/.config/bash/history.sh
# Pathing # # Pathing #
# -------------------------------------------------------------------------- # # -------------------------------------------------------------------------- #
# python version is subject to change # python version is subject to change
export PYTHON_VERSION="3.11" export PYTHON_VERSION="3.12"
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Linux PATH ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Linux PATH ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
if [[ $(uname) == *"Linux"* ]]; then if [[ $(uname) == *"Linux"* ]]; then

View file

@ -63,7 +63,7 @@ if [[ $(uname) == *"Darwin"* ]]; then
if [ ! -f "/usr/local/bin/python" ]; then if [ ! -f "/usr/local/bin/python" ]; then
# this will link python3.11 to python which will fix poetry issues # this will link python3.11 to python which will fix poetry issues
# ref: https://stackoverflow.com/a/74582011/3547184 # 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
fi fi