From 2d467c12d67266a0ae1030f879cdaa7f490214bf Mon Sep 17 00:00:00 2001 From: Peter Holloway Date: Tue, 21 Oct 2025 09:41:09 +0100 Subject: [PATCH] Stop updating uv env in PATH While convenient to not need to type 'uv run', it causes issues with bash command caching (see #300) as well making commands different when working in the devcontainer compared to running on the local machine. --- .devcontainer/devcontainer.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index de182095..c40a79ca 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,10 +7,7 @@ }, "remoteEnv": { // Allow X11 apps to run inside the container - "DISPLAY": "${localEnv:DISPLAY}", - // Do the equivalent of "activate" the venv so we don't have to "uv run" everything - "VIRTUAL_ENV": "/workspaces/${localWorkspaceFolderBasename}/.venv", - "PATH": "/workspaces/${localWorkspaceFolderBasename}/.venv/bin:${containerEnv:PATH}" + "DISPLAY": "${localEnv:DISPLAY}" }, "customizations": { "vscode": {