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

potiuk pushed a commit to branch v2-11-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v2-11-test by this push:
     new 2cd640cc970 Upgrade uv to latest version
2cd640cc970 is described below

commit 2cd640cc9701b9525d7f1c769d6d85c0ebc4351f
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Jun 28 13:10:32 2025 +0200

    Upgrade uv to latest version
---
 .github/actions/install-pre-commit/action.yml                         | 2 +-
 Dockerfile                                                            | 2 +-
 Dockerfile.ci                                                         | 2 +-
 dev/breeze/doc/ci/02_images.md                                        | 2 +-
 dev/breeze/src/airflow_breeze/commands/release_management_commands.py | 2 +-
 dev/breeze/src/airflow_breeze/global_constants.py                     | 2 +-
 scripts/ci/install_breeze.sh                                          | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/actions/install-pre-commit/action.yml 
b/.github/actions/install-pre-commit/action.yml
index a2e82dd122b..ed649f4731d 100644
--- a/.github/actions/install-pre-commit/action.yml
+++ b/.github/actions/install-pre-commit/action.yml
@@ -24,7 +24,7 @@ inputs:
     default: "3.9"
   uv-version:
     description: 'uv version to use'
-    default: "0.7.3"  # Keep this comment to allow automatic replacement of uv 
version
+    default: "0.7.16"  # Keep this comment to allow automatic replacement of 
uv version
   pre-commit-version:
     description: 'pre-commit version to use'
     default: "3.5.0"  # Keep this comment to allow automatic replacement of 
pre-commit version
diff --git a/Dockerfile b/Dockerfile
index 0ac1aed1122..40ed0810bc5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -55,7 +55,7 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
 # Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
 ARG AIRFLOW_PIP_VERSION=25.1.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.7.3
+ARG AIRFLOW_UV_VERSION=0.7.16
 ARG AIRFLOW_USE_UV="false"
 ARG UV_HTTP_TIMEOUT="300"
 ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow";
diff --git a/Dockerfile.ci b/Dockerfile.ci
index 342b947fb08..9bbcfcf86b6 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1251,7 +1251,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh 
install_additional_depe
 # Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
 ARG AIRFLOW_PIP_VERSION=25.1.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.7.3
+ARG AIRFLOW_UV_VERSION=0.7.16
 # TODO(potiuk): automate with upgrade check (possibly)
 ARG AIRFLOW_PRE_COMMIT_VERSION="3.5.0"
 
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index 4264bf2eb34..c45adabb5d2 100644
--- a/dev/breeze/doc/ci/02_images.md
+++ b/dev/breeze/doc/ci/02_images.md
@@ -443,7 +443,7 @@ can be used for CI images:
 | `ADDITIONAL_DEV_APT_DEPS`       |                            | Additional 
apt dev dependencies installed in the first part of the image                   
                       |
 | `ADDITIONAL_DEV_APT_ENV`        |                            | Additional 
env variables defined when installing dev deps                                  
                       |
 | `AIRFLOW_PIP_VERSION`           | `25.1.1`                   | `pip` version 
used.                                                                           
                    |
-| `AIRFLOW_UV_VERSION`            | `0.7.3`                    | `uv` version 
used.                                                                           
                     |
+| `AIRFLOW_UV_VERSION`            | `0.7.16`                   | `uv` version 
used.                                                                           
                     |
 | `AIRFLOW_PRE_COMMIT_VERSION`    | `3.5.0`                    | `pre-commit` 
version used.                                                                   
                     |
 | `AIRFLOW_USE_UV`                | `true`                     | Whether to 
use UV for installation.                                                        
                       |
 | `PIP_PROGRESS_BAR`              | `on`                       | Progress bar 
for PIP installation                                                            
                     |
diff --git 
a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py 
b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
index ad6d8eeead7..1195bbe6a38 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -234,7 +234,7 @@ class VersionedFile(NamedTuple):
 
 
 AIRFLOW_PIP_VERSION = "25.1.1"
-AIRFLOW_UV_VERSION = "0.7.3"
+AIRFLOW_UV_VERSION = "0.7.16"
 AIRFLOW_USE_UV = False
 # TODO: automate these as well
 WHEEL_VERSION = "0.44.0"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index 960f09bbcc5..6fa91b58457 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -187,7 +187,7 @@ if MYSQL_INNOVATION_RELEASE:
 ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
 
 PIP_VERSION = "25.1.1"
-UV_VERSION = "0.7.3"
+UV_VERSION = "0.7.16"
 
 DEFAULT_UV_HTTP_TIMEOUT = 300
 DEFAULT_WSL2_HTTP_TIMEOUT = 900
diff --git a/scripts/ci/install_breeze.sh b/scripts/ci/install_breeze.sh
index 945af07f8b8..1743f549be8 100755
--- a/scripts/ci/install_breeze.sh
+++ b/scripts/ci/install_breeze.sh
@@ -22,7 +22,7 @@ cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
 PYTHON_ARG=""
 
 PIP_VERSION="25.1.1"
-UV_VERSION="0.7.3"
+UV_VERSION="0.7.16"
 if [[ ${PYTHON_VERSION=} != "" ]]; then
     PYTHON_ARG="--python=$(which python"${PYTHON_VERSION}") "
 fi

Reply via email to