From 3e6ea165ba85e244d334261979649443abd6657f Mon Sep 17 00:00:00 2001 From: Mo8it Date: Sat, 2 Jul 2022 16:55:21 +0200 Subject: [PATCH] Exclude dev from install and update poetry --- advlabdb/scripts/setup/shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advlabdb/scripts/setup/shared.py b/advlabdb/scripts/setup/shared.py index cb53106..df425b0 100644 --- a/advlabdb/scripts/setup/shared.py +++ b/advlabdb/scripts/setup/shared.py @@ -17,4 +17,4 @@ def install_latest_pipx(): def poetry_update(): poetry_bin = LOCAL_BIN / "poetry" - run(f"{poetry_bin} update", cwd=REPO_DIR) + run(f"{poetry_bin} update --no-dev", cwd=REPO_DIR)