From 8f4d096ac5d5f2349b6c55a22c39f4c7223221f3 Mon Sep 17 00:00:00 2001 From: krmax44 Date: Mon, 21 Oct 2024 09:27:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix=20type=20checking=20with=20b?= =?UTF-8?q?asedpyright=20in=20dev=20setup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit see https://docs.basedpyright.com/latest/usage/import-resolution/#editable-installs --- devsetup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devsetup.sh b/devsetup.sh index cdfeb87f..36c62982 100755 --- a/devsetup.sh +++ b/devsetup.sh @@ -112,7 +112,7 @@ dependencies() { echo "Cloning / installing all editable dependencies..." for name in "${REPOS[@]}"; do - uv pip install -e "./$name" + uv pip install -e "./$name" --config-setting editable_mode=compat install_precommit "$name" done }