diff --git a/.vscode/settings.json b/.vscode/settings.json index 931c752e0e08715de9f21bbdb4f20507ede5fa85..64de4c61e16e14b32113594bd5f0074b28d7b142 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -44,7 +44,6 @@ "jupyter.debugJustMyCode": false, "debugpy.debugJustMyCode": false, "ruff.fixAll": true, - "python.defaultInterpreterPath": ".venv/bin/python", "python.testing.pytestEnabled": true, "python.testing.unittestEnabled": false, "python.analysis.autoFormatStrings": true, @@ -54,7 +53,7 @@ "python.analysis.inlayHints.pytestParameters": true, "python.analysis.inlayHints.variableTypes": true, "python.analysis.typeCheckingMode": "strict", - "python.analysis.extraPaths": ["${workspaceFolder}/python"], + "python.analysis.extraPaths": ["${workspaceFolder}/src"], "[shellscript]": { "editor.defaultFormatter": "foxundermoon.shell-format" }, diff --git a/setup_dev.sh b/setup_dev.sh index e49402dd7e645f6a04da09ef0ee3a47cff767d31..cd6e031a159c7537bbc4980eb10b94b910f86d03 100755 --- a/setup_dev.sh +++ b/setup_dev.sh @@ -17,7 +17,7 @@ python3 -m venv .venv PIP=".venv/bin/pip" -library_output_dir="$PWD/python/myproj/simulation/_csrc" +library_output_dir="$PWD/src/myproj/simulation/_csrc" $PIP install -r requirements-dev.txt $PIP install --no-build-isolation --check-build-dependencies -ve . \ -Ccmake.define.CMAKE_EXPORT_COMPILE_COMMANDS=1 \