From 1f5355b4c3b6ba5f659d794d6318604a22f8381a Mon Sep 17 00:00:00 2001 From: Roberta Bustos Date: Wed, 29 Jan 2025 23:28:20 -0600 Subject: [PATCH] Update devcontainer.json Having problems with latest image having python version 3.12. This change will align with python version required - 3.10 --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 744dd07e8..8d09be216 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ // https://github.com/github/codespaces-jupyter { "name": "Generative AI For Beginners", - "image": "mcr.microsoft.com/devcontainers/universal:2", + "image": "mcr.microsoft.com/devcontainers/universal:2.11.2", "hostRequirements": { "cpus": 4 }, @@ -21,4 +21,4 @@ "postCreateCommand": "pip3 --disable-pip-version-check --no-cache-dir install -r requirements.txt" } } -} \ No newline at end of file +}