Skip to content

Commit fa99638

Browse files
committed
fix(devcontainer): Make poetry interpreter VSCode default
1 parent 3e3a693 commit fa99638

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.devcontainer/devcontainer.json

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
],
1515
"settings": {
1616
"git.autofetch": true,
17+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
1718
"python.testing.pytestEnabled": true,
1819
"terminal.integrated.defaultProfile.linux": "zsh"
1920
}

.devcontainer/post_create.sh

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ git config --global --add safe.directory /workspaces/dspy
66

77
pip install poetry==1.7.1
88
poetry config installer.max-workers 4
9+
poetry config virtualenvs.in-project true
910

1011
poetry install --with dev
1112

0 commit comments

Comments
 (0)