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

kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2a9bded5ac2 Bump `uv` to `0.5.1` (#43838)
2a9bded5ac2 is described below

commit 2a9bded5ac230ef29fadadbf04889e80da891200
Author: Kaxil Naik <[email protected]>
AuthorDate: Sat Nov 9 01:32:52 2024 +0000

    Bump `uv` to `0.5.1` (#43838)
    
    https://github.com/astral-sh/uv/releases/tag/0.5.1
---
 Dockerfile                                                            | 2 +-
 Dockerfile.ci                                                         | 2 +-
 dev/breeze/doc/ci/02_images.md                                        | 2 +-
 dev/breeze/src/airflow_breeze/commands/release_management_commands.py | 4 ++--
 dev/breeze/src/airflow_breeze/global_constants.py                     | 2 +-
 hatch_build.py                                                        | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index c6bff1e5741..48d53af815d 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=24.3.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.5.0
+ARG AIRFLOW_UV_VERSION=0.5.1
 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 8e81bb07764..81f5ac0399b 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1373,7 +1373,7 @@ RUN bash /scripts/docker/install_packaging_tools.sh; \
 # Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
 ARG AIRFLOW_PIP_VERSION=24.3.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.5.0
+ARG AIRFLOW_UV_VERSION=0.5.1
 
 ENV AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION} \
     AIRFLOW_UV_VERSION=${AIRFLOW_UV_VERSION}
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index 9260586373a..589f7998eb9 100644
--- a/dev/breeze/doc/ci/02_images.md
+++ b/dev/breeze/doc/ci/02_images.md
@@ -448,7 +448,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`             | `24.3.1`                   | PIP version 
used.                                                                           
                                                               |
-| `AIRFLOW_UV_VERSION`              | `0.5.0`                    | UV version 
used.                                                                           
                                                                |
+| `AIRFLOW_UV_VERSION`              | `0.5.1`                    | UV 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 4ab8331bbd9..1fa57a3d744 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -230,9 +230,9 @@ class VersionedFile(NamedTuple):
 
 
 AIRFLOW_PIP_VERSION = "24.3.1"
-AIRFLOW_UV_VERSION = "0.5.0"
+AIRFLOW_UV_VERSION = "0.5.1"
 AIRFLOW_USE_UV = False
-# TODO: automate thsese as well
+# TODO: automate these as well
 WHEEL_VERSION = "0.44.0"
 GITPYTHON_VERSION = "3.1.43"
 RICH_VERSION = "13.9.4"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index 471666273fc..de8c911b3e7 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -184,7 +184,7 @@ if MYSQL_INNOVATION_RELEASE:
 ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
 
 PIP_VERSION = "24.3.1"
-UV_VERSION = "0.5.0"
+UV_VERSION = "0.5.1"
 
 DEFAULT_UV_HTTP_TIMEOUT = 300
 DEFAULT_WSL2_HTTP_TIMEOUT = 900
diff --git a/hatch_build.py b/hatch_build.py
index eb3278507e0..226ca97e4ae 100644
--- a/hatch_build.py
+++ b/hatch_build.py
@@ -141,7 +141,7 @@ CORE_EXTRAS: dict[str, list[str]] = {
         "statsd>=3.3.0",
     ],
     "uv": [
-        "uv>=0.5.0",
+        "uv>=0.5.1",
     ],
 }
 

Reply via email to