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

potiuk 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 11ec899d977 Fixing upgrade checks on main (#48073)
11ec899d977 is described below

commit 11ec899d977b376eb8cf9e5568e2d80b0254ae0e
Author: Amogh Desai <[email protected]>
AuthorDate: Fri Mar 21 23:47:45 2025 +0530

    Fixing upgrade checks on main (#48073)
---
 .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 | 4 ++--
 dev/breeze/src/airflow_breeze/global_constants.py                     | 2 +-
 scripts/ci/install_breeze.sh                                          | 2 +-
 scripts/tools/setup_breeze                                            | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/actions/install-pre-commit/action.yml 
b/.github/actions/install-pre-commit/action.yml
index e675896d214..98cb473ff2c 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.6.8"  # Keep this comment to allow automatic replacement of uv 
version
+    default: "0.6.9"  # Keep this comment to allow automatic replacement of uv 
version
   pre-commit-version:
     description: 'pre-commit version to use'
     default: "4.2.0"  # Keep this comment to allow automatic replacement of 
pre-commit version
diff --git a/Dockerfile b/Dockerfile
index eba923ff0a5..3026bebbfdb 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.0.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.6.8
+ARG AIRFLOW_UV_VERSION=0.6.9
 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 114d9055a5e..3648e3f2c9e 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1253,7 +1253,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.0.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.6.8
+ARG AIRFLOW_UV_VERSION=0.6.9
 # TODO(potiuk): automate with upgrade check (possibly)
 ARG AIRFLOW_PRE_COMMIT_VERSION="4.2.0"
 ARG AIRFLOW_PRE_COMMIT_UV_VERSION="4.1.4"
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index 32aa6a80bd2..46309dacde7 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.0.1`                   | `pip` version 
used.                                                                           
                    |
-| `AIRFLOW_UV_VERSION`            | `0.6.8`                    | `uv` version 
used.                                                                           
                     |
+| `AIRFLOW_UV_VERSION`            | `0.6.9`                    | `uv` version 
used.                                                                           
                     |
 | `AIRFLOW_PRE_COMMIT_VERSION`    | `4.2.0`                    | `pre-commit` 
version used.                                                                   
                     |
 | `AIRFLOW_PRE_COMMIT_UV_VERSION` | `4.1.4`                    | 
`pre-commit-uv` version used.                                                   
                                  |
 | `AIRFLOW_USE_UV`                | `true`                     | Whether to 
use UV for 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 8f7f7bb922b..6276bfcb8fb 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -239,7 +239,7 @@ class VersionedFile(NamedTuple):
 
 
 AIRFLOW_PIP_VERSION = "25.0.1"
-AIRFLOW_UV_VERSION = "0.6.8"
+AIRFLOW_UV_VERSION = "0.6.9"
 AIRFLOW_USE_UV = False
 # TODO(potiuk): automate upgrades of these versions (likely via 
requirements.txt file)
 GITPYTHON_VERSION = "3.1.44"
@@ -247,7 +247,7 @@ RICH_VERSION = "13.9.4"
 PRE_COMMIT_VERSION = "4.2.0"
 HATCH_VERSION = "1.14.0"
 PYYAML_VERSION = "6.0.2"
-UV_VERSION = "0.6.6"
+UV_VERSION = "0.6.9"
 
 # no need for pre-commit-uv. Those commands will only ever initialize the 
compile-www-assets
 # pre-commit environment and this is done with node, no python installation is 
needed.
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index eebcc2a21f0..9784d7f1541 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -197,7 +197,7 @@ if MYSQL_INNOVATION_RELEASE:
 ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
 
 PIP_VERSION = "25.0.1"
-UV_VERSION = "0.6.8"
+UV_VERSION = "0.6.9"
 
 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 3bb23fcb5b9..c6cefd40dc9 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.0.1"
-UV_VERSION="0.6.8"
+UV_VERSION="0.6.9"
 if [[ ${PYTHON_VERSION=} != "" ]]; then
     PYTHON_ARG="--python=$(which python"${PYTHON_VERSION}") "
 fi
diff --git a/scripts/tools/setup_breeze b/scripts/tools/setup_breeze
index d8ff24d82bb..3c073f17caa 100755
--- a/scripts/tools/setup_breeze
+++ b/scripts/tools/setup_breeze
@@ -27,7 +27,7 @@ COLOR_YELLOW=$'\e[33m'
 COLOR_BLUE=$'\e[34m'
 COLOR_RESET=$'\e[0m'
 
-UV_VERSION="0.6.8"
+UV_VERSION="0.6.9"
 
 function manual_instructions() {
     echo

Reply via email to