We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a47e57 commit 5b41533Copy full SHA for 5b41533
.vscode/tasks.json
@@ -180,6 +180,25 @@
180
"clear": true,
181
"panel": "dedicated"
182
}
183
+ },
184
+ {
185
+ "label": "Backend :: Show Dependency Version",
186
+ "detail": "Print the currently installed version of a dependency",
187
+ "group": "build",
188
+ "type": "shell",
189
+ "command": "uv tree --depth 0 --package ${input:depName}",
190
+ "presentation": {
191
+ "reveal": "always",
192
+ "focus": true,
193
+ "panel": "shared"
194
+ }
195
196
+ ],
197
+ "inputs": [
198
199
+ "id": "depName",
200
+ "type": "promptString",
201
+ "description": "Dependency name (e.g. torch, pytest, etc):"
202
203
]
204
0 commit comments