From b9bb07c94e8a526c8b835c00dc48dfba9ec21932 Mon Sep 17 00:00:00 2001 From: David Dreschner Date: Mon, 18 May 2026 15:59:22 +0200 Subject: [PATCH] chore(DevContainer): Add Python 3.13 to devcontainer and remove composer call Signed-off-by: David Dreschner --- .devcontainer/devcontainer.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ad5d0211a96..1951739ef41 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,5 +12,11 @@ ] } }, - "postCreateCommand": "python3 -m pip install -r requirements.txt && python3 -m pip install sphinx-autobuild && cd build && composer install --ignore-platform-reqs" + "features": { + "ghcr.io/devcontainers/features/python:1": { + "version": "3.13" + } + }, + "postCreateCommand": "python3 -m pip install -r requirements.txt && python3 -m pip install sphinx-autobuild", + "waitFor": "postCreateCommand" }