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 378146ebbdf [v3-0-test] Fix broken main - update tool versions
(#50136) (#50140)
378146ebbdf is described below
commit 378146ebbdf42eb67c3a11c9f3ccf700e9b62b23
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat May 3 07:06:45 2025 +0200
[v3-0-test] Fix broken main - update tool versions (#50136) (#50140)
(cherry picked from commit 746b6dd7de6ac5296beb3a0bb4993c355e124402)
Co-authored-by: Jens Scheffler <[email protected]>
---
.github/actions/install-pre-commit/action.yml | 2 +-
Dockerfile | 6 +++---
Dockerfile.ci | 6 +++---
dev/breeze/doc/ci/02_images.md | 4 ++--
.../src/airflow_breeze/commands/release_management_commands.py | 4 ++--
dev/breeze/src/airflow_breeze/global_constants.py | 4 ++--
pyproject.toml | 2 +-
scripts/ci/install_breeze.sh | 4 ++--
scripts/tools/setup_breeze | 2 +-
9 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/.github/actions/install-pre-commit/action.yml
b/.github/actions/install-pre-commit/action.yml
index 9fdb53c61b2..3a427ee1251 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.17" # Keep this comment to allow automatic replacement of
uv version
+ default: "0.7.2" # 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 e3278af0dee..44470a55d53 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -54,10 +54,10 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
# You can swap comments between those two args to test pip from the main
version
# When you attempt to test if the version of `pip` from specified branch works
for our builds
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
-ARG AIRFLOW_PIP_VERSION=25.1
+ARG AIRFLOW_PIP_VERSION=25.1.1
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
-ARG AIRFLOW_SETUPTOOLS_VERSION=79.0.1
-ARG AIRFLOW_UV_VERSION=0.6.17
+ARG AIRFLOW_SETUPTOOLS_VERSION=80.1.0
+ARG AIRFLOW_UV_VERSION=0.7.2
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 dc0cc5759b1..d936100f8e3 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1359,10 +1359,10 @@ COPY --from=scripts common.sh
install_packaging_tools.sh install_additional_depe
# You can swap comments between those two args to test pip from the main
version
# When you attempt to test if the version of `pip` from specified branch works
for our builds
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
-ARG AIRFLOW_PIP_VERSION=25.1
+ARG AIRFLOW_PIP_VERSION=25.1.1
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
-ARG AIRFLOW_SETUPTOOLS_VERSION=79.0.1
-ARG AIRFLOW_UV_VERSION=0.6.17
+ARG AIRFLOW_SETUPTOOLS_VERSION=80.1.0
+ARG AIRFLOW_UV_VERSION=0.7.2
# 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 45b28ef13f2..b0e34d1b4ae 100644
--- a/dev/breeze/doc/ci/02_images.md
+++ b/dev/breeze/doc/ci/02_images.md
@@ -442,8 +442,8 @@ can be used for CI images:
| `DEV_APT_DEPS` | | Dev APT
dependencies installed in the first part of the image (default empty means
default dependencies are used) |
| `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` | `pip`
version used.
|
-| `AIRFLOW_UV_VERSION` | `0.6.17` | `uv`
version used.
|
+| `AIRFLOW_PIP_VERSION` | `25.1.1` | `pip`
version used.
|
+| `AIRFLOW_UV_VERSION` | `0.7.2` | `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 17cc4208197..088b12cc951 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -235,8 +235,8 @@ class VersionedFile(NamedTuple):
file_name: str
-AIRFLOW_PIP_VERSION = "25.1"
-AIRFLOW_UV_VERSION = "0.6.17"
+AIRFLOW_PIP_VERSION = "25.1.1"
+AIRFLOW_UV_VERSION = "0.7.2"
AIRFLOW_USE_UV = False
# TODO(potiuk): automate upgrades of these versions (likely via
requirements.txt file)
GITPYTHON_VERSION = "3.1.44"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py
b/dev/breeze/src/airflow_breeze/global_constants.py
index b14d4b2eb50..2bd56e49eef 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -198,8 +198,8 @@ if MYSQL_INNOVATION_RELEASE:
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
-PIP_VERSION = "25.1"
-UV_VERSION = "0.6.17"
+PIP_VERSION = "25.1.1"
+UV_VERSION = "0.7.2"
DEFAULT_UV_HTTP_TIMEOUT = 300
DEFAULT_WSL2_HTTP_TIMEOUT = 900
diff --git a/pyproject.toml b/pyproject.toml
index 2105ae08f3c..cf6c8413b5c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -518,7 +518,7 @@ packages = []
"apache-airflow-providers-amazon[s3fs]",
]
"uv" = [
- "uv>=0.6.17",
+ "uv>=0.7.2",
]
diff --git a/scripts/ci/install_breeze.sh b/scripts/ci/install_breeze.sh
index eceb264d82b..dbe138a8435 100755
--- a/scripts/ci/install_breeze.sh
+++ b/scripts/ci/install_breeze.sh
@@ -21,8 +21,8 @@ cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
PYTHON_ARG=""
-PIP_VERSION="25.1"
-UV_VERSION="0.6.17"
+PIP_VERSION="25.1.1"
+UV_VERSION="0.7.2"
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 b30cb14100e..df851a90514 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.17"
+UV_VERSION="0.7.2"
function manual_instructions() {
echo