.envrc: rebuild venv on python version change; install requirements

This commit is contained in:
cronekorkn 2023-03-23 11:24:41 +01:00
parent 73a5175a6d
commit 66b0492343
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

11
.envrc
View file

@ -1,10 +1,17 @@
#!/usr/bin/env bash
if test -f .venv/bin/python && test "$(realpath .venv/bin/python)" != "$(realpath "$(pyenv which python)")"
then
echo "rebuilding venv für new python version"
rm -rf .venv
fi
python3 -m venv .venv
source ./.venv/bin/activate
source .venv/bin/activate
PATH_add .venv/bin
PATH_add bin
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pip wheel
python3 -m pip install --upgrade -r requirements.txt
rm -rf .cache/bw/git_deploy
export BW_GIT_DEPLOY_CACHE=.cache/bw/git_deploy