From d96ff96372c5b57e936ec18d2aec162751335905 Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Sun, 18 Feb 2024 00:29:06 -0600 Subject: [PATCH] Don't install Python 'tools' in DevContainer (#167) Signed-off-by: Bradley Reynolds --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ac617fc..cf7d70e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,8 @@ "image": "mcr.microsoft.com/devcontainers/universal:2", "features": { "ghcr.io/devcontainers/features/python:1": { - "version": "3.11" + "version": "3.11", + "installTools": false }, "ghcr.io/devcontainers/features/powershell:1": {} }