This is an automated email from the ASF dual-hosted git repository.

hainenber pushed a commit to branch feat/run-uv-compile-for-python-deps-pr
in repository https://gitbox.apache.org/repos/asf/superset.git

commit bbe1fe8aa2dffd363223330159113ba2e4480238
Author: hainenber <[email protected]>
AuthorDate: Sat May 30 16:04:52 2026 +0700

    chore: pin `uv` to latest 0.11.17 for futureproofing
    
    Signed-off-by: hainenber <[email protected]>
---
 .github/workflows/bump-python-package.yml | 2 +-
 scripts/uv-pip-compile.sh                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/bump-python-package.yml 
b/.github/workflows/bump-python-package.yml
index d69b17d09e5..2d478158117 100644
--- a/.github/workflows/bump-python-package.yml
+++ b/.github/workflows/bump-python-package.yml
@@ -46,7 +46,7 @@ jobs:
           python-version: "3.10"
 
       - name: Install uv
-        run: pip install uv
+        run: pip install uv==0.11.17
 
       - name: supersetbot bump-python -p "${{ github.event.inputs.package }}"
         env:
diff --git a/scripts/uv-pip-compile.sh b/scripts/uv-pip-compile.sh
index 88ff35e2f4d..391c97b6235 100755
--- a/scripts/uv-pip-compile.sh
+++ b/scripts/uv-pip-compile.sh
@@ -31,7 +31,7 @@ if [ -z "$RUNNING_IN_DOCKER" ]; then
     -w /app \
     -e RUNNING_IN_DOCKER=1 \
     python:${PYTHON_VERSION}-slim \
-    bash -c "pip install uv && ./scripts/uv-pip-compile.sh $*"
+    bash -c "pip install uv==0.11.17 && ./scripts/uv-pip-compile.sh $*"
 
   exit $?
 fi

Reply via email to