From cecffed4dbbccd97b7907246a371f65115795123 Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Sun, 9 Nov 2025 12:49:22 +0000 Subject: [PATCH] refactor: Update Python interpreter path and enhance environment configuration for better development setup --- .devcontainer/devcontainer.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c239013..d3c0105 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -40,7 +40,11 @@ "files.trimTrailingWhitespace": true, "python.analysis.typeCheckingMode": "basic", "python.analysis.autoImportCompletions": true, - "python.defaultInterpreterPath": "/usr/local/bin/python", + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", + "python.analysis.extraPaths": [ + "${workspaceFolder}/.venv/lib/python3.13/site-packages" + ], + "python.terminal.activateEnvironment": true, "python.linting.enabled": true, "python.linting.ruffEnabled": true, "python.terminal.activateEnvInCurrentTerminal": true,