This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch codespaces in repository https://gitbox.apache.org/repos/asf/superset.git
commit 70d0448f664cfc90b67324f2b7b99977a097d9f2 Author: Maxime Beauchemin <[email protected]> AuthorDate: Mon Jul 28 16:11:21 2025 -0700 fix: Remove Python feature to avoid building from source - Ubuntu 24.04 already includes Python 3.12 - No need to build Python from source (saves ~10min) - System Python is sufficient for host environment - Actual Superset Python runs in Docker containers --- .devcontainer/devcontainer.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8c8c2e66fb..e406a07366 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,9 +7,6 @@ "moby": true, "dockerDashComposeVersion": "v2" }, - "ghcr.io/devcontainers/features/python:1": { - "version": "3.11" - }, "ghcr.io/devcontainers/features/node:1": { "version": "20" },
