From 3e74f5bda49f1dde4e82800d2deab9320f7353d2 Mon Sep 17 00:00:00 2001 From: Beatrix Klebe Date: Mon, 21 Oct 2024 12:35:39 -0700 Subject: [PATCH] feat: upgrade python, add local zprofile, add coursier and libpq to path --- .config/mise/config.toml | 4 ++-- .config/zsh/.zprofile | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.config/mise/config.toml b/.config/mise/config.toml index 6999452..c20df38 100644 --- a/.config/mise/config.toml +++ b/.config/mise/config.toml @@ -1,17 +1,17 @@ [tools] go = "1.21.3" -python = "3.12.3" poetry = "1.8.3" elixir = "1.17.2-otp-27" erlang = "27.0" java = "liberica-javafx-22.0.1+10" terraform = "1.4.2" shellcheck = "0.10.0" -usage = "0.3.0" "pipx:erikbern/git-of-theseus" = "latest" node = "22.7.0" "cargo:cargo-binstall" = "1.6.9" "cargo:diffedit3" = "0.4.0" +python = "3.13.0" +usage = "0.3.0" [settings] experimental = true diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index 85ff544..586c7e1 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -15,13 +15,17 @@ export DOTNET_CLI_TELEMETRY_OPTOUT=true export PATH="\ $HOME/bin:\ $HOME/.local/bin:\ +$prefix/opt/libpq/bin:\ $prefix/opt/grep/libexec/gnubin:\ $prefix/opt/python@3.11/libexec/bin:\ +$HOME/Library/Application Support/Coursier/bin:\ $XDG_CONFIG_HOME/emacs/bin:\ $HOME/Library/Application Support/JetBrains/Toolbox/scripts:\ /Applications/gg.app/Contents/MacOS/:\ $PATH" +. $ZDOTDIR/.zprofile-local + export CPPFLAGS="${CPPFLAGS+"$CPPFLAGS "}-I$prefix/opt/unixodbc/include" export LDFLAGS="${LDFLAGS+"$LDFLAGS "}-L$prefix/opt/unixodbc/lib" export KERL_CONFIGURE_OPTIONS="--with-odbc=$prefix/opt/unixodbc --with-ssl=$prefix/opt/openssl@3"