vscode: fix missing python modules, ultimately due to uv sync issue

This commit is contained in:
2026-03-26 22:33:34 -07:00
parent 8e93f75257
commit 516a2a107e
5 changed files with 19 additions and 2 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
# OS/editor noise
.DS_Store
.idea/
.vscode/
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
# Local environment files
.env
+3
View File
@@ -0,0 +1,3 @@
{
"recommendations": ["ms-python.python"]
}
+3
View File
@@ -0,0 +1,3 @@
{
"python.defaultInterpreterPath": "${workspaceFolder}/python/.venv/bin/python"
}
+1 -1
View File
@@ -11,7 +11,7 @@ buf-generate:
$(BUF) generate
py-sync:
uv sync --project python
uv sync --project python --all-packages
go-test:
cd clients/go && go test ./...
+9
View File
@@ -0,0 +1,9 @@
{
"venvPath": "python",
"venv": ".venv",
"extraPaths": [
"gen/python",
"python/packages/officeconvert/src",
"python/packages/server/src"
]
}