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 bc604d54e4e4380eb63e4c98029e3060d0a7e62a
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Mon Jul 28 15:58:36 2025 -0700

    fix: Use Ubuntu 24.04 base to match CI with Python 3.11
    
    - Switch to ubuntu-24.04 to match CI environment
    - Add Python 3.11 explicitly
    - Keep lean setup with only needed features
---
 .devcontainer/devcontainer.json | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index f55e856816..8c42fde938 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,12 +1,15 @@
 {
   "name": "Apache Superset Development",
-  "image": "mcr.microsoft.com/devcontainers/python:3.10",
+  "image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
 
   "features": {
     "ghcr.io/devcontainers/features/docker-in-docker:2": {
       "moby": true,
       "dockerDashComposeVersion": "v2"
     },
+    "ghcr.io/devcontainers/features/python:1": {
+      "version": "3.11"
+    },
     "ghcr.io/devcontainers/features/node:1": {
       "version": "18"
     },

Reply via email to