From 1967438936c46716ba01207080f931ab071d323a Mon Sep 17 00:00:00 2001 From: Keith Devens Date: Tue, 2 Feb 2021 12:57:05 -0700 Subject: [PATCH] Remove global pythonPath setting Just depend on setting it in each project. Setting python.venvPath and/or python.venvFolders doesn't seem to work, and vscode doesn't support Poetry environments natively yet. The interpreter discovery in vscode is being refactored: https://github.com/microsoft/vscode-python/issues/12020 Revisit when that's done. --- HOME/Library/Application Support/Code/User/settings.json | 1 - 1 file changed, 1 deletion(-) diff --git a/HOME/Library/Application Support/Code/User/settings.json b/HOME/Library/Application Support/Code/User/settings.json index 819a52bf..162d14e7 100644 --- a/HOME/Library/Application Support/Code/User/settings.json +++ b/HOME/Library/Application Support/Code/User/settings.json @@ -216,7 +216,6 @@ "source.organizeImports": true } }, - "python.pythonPath": "/Users/kbd/.pyenv/shims/python3", "python.formatting.provider": "black", "python.sortImports.args": ["-m3", "--tc", "--ca"], "python.testing.pytestEnabled": true,