From b3023e297616b12dc3d6cf674192fa2ff535ff95 Mon Sep 17 00:00:00 2001 From: Oliver Mannion <125105+tekumara@users.noreply.github.com> Date: Sun, 28 Jul 2024 22:19:39 +1000 Subject: [PATCH] feat(vscode): default to python 3.11 --- dotfiles/Library/Application Support/Code/User/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/Library/Application Support/Code/User/settings.json b/dotfiles/Library/Application Support/Code/User/settings.json index 83274f0..14cf3dc 100644 --- a/dotfiles/Library/Application Support/Code/User/settings.json +++ b/dotfiles/Library/Application Support/Code/User/settings.json @@ -232,7 +232,7 @@ } ] }, - "python.defaultInterpreterPath": "~/.pyenv/versions/3.9/bin/python", + "python.defaultInterpreterPath": "~/.pyenv/versions/3.11/bin/python", "python.testing.pytestArgs": [ "--color=yes" ], @@ -262,5 +262,5 @@ "coverage-gutters.showLineCoverage": true, "markiscodecoverage.searchCriteria": "coverage.lcov", "go.goroot": "/opt/homebrew/opt/go/libexec/", - "typos.path": "~/code/typos-lsp/target/debug/typos-lsp", + "typos.path": "~/code/typos-lsp/target/debug/typos-lsp" }