From 4c4054a4e6e522a349c6b496fa62f74f822e16ba Mon Sep 17 00:00:00 2001 From: hannahwestra25 Date: Tue, 23 Dec 2025 11:10:04 -0500 Subject: [PATCH 1/2] fix permission denied error when creating env --- .devcontainer/Dockerfile | 1 - .devcontainer/devcontainer.json | 1 - 2 files changed, 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3e5043043..a1a3f6be1 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,7 +3,6 @@ FROM --platform=linux/amd64 ghcr.io/astral-sh/uv:python3.11-bookworm-slim # Makes installation faster ENV UV_COMPILE_BYTECODE=1 -ENV UV_SYSTEM_PYTHON=1 SHELL ["/bin/bash", "-c"] diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ee8731042..1812ea7b2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -34,7 +34,6 @@ ], "python.analysis.exclude": [ "/opt/pyrit-dev/**", - "**/.venv/**", "**/site-packages/**", "**/doc/**", "**/tests/**", From 95ab6510310085bcb4d83d0dc1ea24a2f20fe8dd Mon Sep 17 00:00:00 2001 From: hannahwestra25 Date: Tue, 23 Dec 2025 11:14:15 -0500 Subject: [PATCH 2/2] add exclude --- .devcontainer/devcontainer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1812ea7b2..ee8731042 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -34,6 +34,7 @@ ], "python.analysis.exclude": [ "/opt/pyrit-dev/**", + "**/.venv/**", "**/site-packages/**", "**/doc/**", "**/tests/**",