From 7e653ab79001b33849746d204e17ed493a3f436f Mon Sep 17 00:00:00 2001 From: Michael Ekstrand Date: Fri, 2 Aug 2024 11:30:37 -0400 Subject: [PATCH] install lkdev for dev --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 69f991522..927a31a3e 100644 --- a/justfile +++ b/justfile @@ -40,6 +40,7 @@ conda-dev-env-file *components=PACKAGES: # create a conda environment for development conda-dev-env *components=PACKAGES: (conda-dev-env-file components) conda env update --prune -n lkpy -f environment.yml + pip install --no-deps -e . for pkg in {{components}}; do \ echo "installing $pkg"; \ pip install --no-deps -e $pkg; \