This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new 4cdb058ad76 [v3-0-test] Fixing uv upgrade failures on main (#53406)
(#53451)
4cdb058ad76 is described below
commit 4cdb058ad76fcb4d27cfdc5c65292f1a02ffbb09
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Jul 17 15:38:01 2025 +0200
[v3-0-test] Fixing uv upgrade failures on main (#53406) (#53451)
(cherry picked from commit 6aeee1563378269cd7782f15a1ffb64a819b4993)
Co-authored-by: Amogh Desai <[email protected]>
---
.github/actions/install-pre-commit/action.yml | 2 +-
.github/workflows/ci-amd.yml | 2 +-
.pre-commit-config.yaml | 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 +-
pyproject.toml | 2 +-
scripts/ci/install_breeze.sh | 2 +-
scripts/tools/setup_breeze | 2 +-
11 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/.github/actions/install-pre-commit/action.yml
b/.github/actions/install-pre-commit/action.yml
index fb70cdecfe8..e56cf9c1132 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.20" # Keep this comment to allow automatic replacement of
uv version
+ default: "0.7.21" # 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/.github/workflows/ci-amd.yml b/.github/workflows/ci-amd.yml
index 426d5971f11..41f21dc3f70 100644
--- a/.github/workflows/ci-amd.yml
+++ b/.github/workflows/ci-amd.yml
@@ -186,7 +186,7 @@ jobs:
- name: Install pre-commit, uv, and pre-commit-uv
shell: bash
env:
- UV_VERSION: "0.7.20" # Keep this comment to allow automatic
replacement of uv version
+ UV_VERSION: "0.7.21" # Keep this comment to allow automatic
replacement of uv version
PRE_COMMIT_VERSION: "4.2.0" # Keep this comment to allow automatic
replacement of pre-commit version
PRE_COMMIT_UV_VERSION: "4.1.4" # Keep this comment to allow
automatic replacement of pre-commit-uv version
run: |
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index bdafd8421e5..2dc86214c3d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -18,7 +18,7 @@
default_stages: [pre-commit, pre-push]
default_language_version:
python: python3
- node: 22.17.0
+ node: 22.17.1
golang: 1.24.0
minimum_pre_commit_version: '3.2.0'
exclude: ^.*/.*_vendor/
diff --git a/Dockerfile b/Dockerfile
index d322c049e32..9c1efbc0574 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -57,7 +57,7 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
ARG AIRFLOW_PIP_VERSION=25.1.1
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
ARG AIRFLOW_SETUPTOOLS_VERSION=80.9.0
-ARG AIRFLOW_UV_VERSION=0.7.20
+ARG AIRFLOW_UV_VERSION=0.7.21
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 85b2d64f129..6c52152cae6 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1445,7 +1445,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh
install_additional_depe
ARG AIRFLOW_PIP_VERSION=25.1.1
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
ARG AIRFLOW_SETUPTOOLS_VERSION=80.9.0
-ARG AIRFLOW_UV_VERSION=0.7.20
+ARG AIRFLOW_UV_VERSION=0.7.21
# 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 c84b9c1e929..b556ec69d56 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.20` | `uv`
version used.
|
+| `AIRFLOW_UV_VERSION` | `0.7.21` | `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 54492becae8..b4aead3a977 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -245,7 +245,7 @@ class VersionedFile(NamedTuple):
AIRFLOW_PIP_VERSION = "25.1.1"
-AIRFLOW_UV_VERSION = "0.7.20"
+AIRFLOW_UV_VERSION = "0.7.21"
AIRFLOW_USE_UV = False
GITPYTHON_VERSION = "3.1.44"
RICH_VERSION = "14.0.0"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py
b/dev/breeze/src/airflow_breeze/global_constants.py
index eaee987ea96..761d0d54b04 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -199,7 +199,7 @@ if MYSQL_INNOVATION_RELEASE:
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
PIP_VERSION = "25.1.1"
-UV_VERSION = "0.7.20"
+UV_VERSION = "0.7.21"
DEFAULT_UV_HTTP_TIMEOUT = 300
DEFAULT_WSL2_HTTP_TIMEOUT = 900
diff --git a/pyproject.toml b/pyproject.toml
index 200844cb90d..c6a84b6be14 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -518,7 +518,7 @@ packages = []
"apache-airflow-providers-amazon[s3fs]",
]
"uv" = [
- "uv>=0.7.20",
+ "uv>=0.7.21",
]
diff --git a/scripts/ci/install_breeze.sh b/scripts/ci/install_breeze.sh
index fc005e47199..c26fcca65a3 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.20"
+UV_VERSION="0.7.21"
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 3470af9c34c..33d5553a63f 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.7.20"
+UV_VERSION="0.7.21"
function manual_instructions() {
echo