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 76979f15f72993133f25c702b594d8d0a5c4bbf2 Author: Maxime Beauchemin <maximebeauche...@gmail.com> AuthorDate: Mon Jul 28 16:03:38 2025 -0700 feat: Add uv package installer to devcontainer setup - Install uv via official installer script - Provides 10-100x faster Python package operations - Matches what CI uses for package installation --- .devcontainer/setup-dev.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.devcontainer/setup-dev.sh b/.devcontainer/setup-dev.sh index a73e8ab46a..71a2f4ce59 100755 --- a/.devcontainer/setup-dev.sh +++ b/.devcontainer/setup-dev.sh @@ -13,6 +13,10 @@ sudo apt-get install -y \ libldap2-dev \ libpq-dev +# Install uv for fast Python package management +echo "📦 Installing uv..." +curl -LsSf https://astral.sh/uv/install.sh | sh + # Make the start script executable chmod +x .devcontainer/start-superset.sh