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 930c0d70481 Bump ``pip`` to ``24.2`` (#43197)
930c0d70481 is described below
commit 930c0d70481668023acb0f2a64b5bd225c1a45b1
Author: Kaxil Naik <[email protected]>
AuthorDate: Sun Oct 20 18:42:34 2024 +0100
Bump ``pip`` to ``24.2`` (#43197)
---
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 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index d0554b74fd7..fb17928a97f 100644
--- a/dev/breeze/doc/ci/02_images.md
+++ b/dev/breeze/doc/ci/02_images.md
@@ -447,7 +447,7 @@ can be used for CI images:
| `DEV_APT_DEPS` | Empty - install default dependencies
(see `install_os_dependencies.sh`) | Dev APT dependencies installed in the
first part of the image
|
| `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.0`
| PIP version used.
|
+| `AIRFLOW_PIP_VERSION` | `24.2`
| PIP version used.
|
| `AIRFLOW_UV_VERSION` | `0.4.24`
| 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 d92a2738115..b5d3d5ab048 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -229,7 +229,7 @@ class VersionedFile(NamedTuple):
file_name: str
-AIRFLOW_PIP_VERSION = "24.0"
+AIRFLOW_PIP_VERSION = "24.2"
AIRFLOW_UV_VERSION = "0.4.24"
AIRFLOW_USE_UV = False
WHEEL_VERSION = "0.36.2"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py
b/dev/breeze/src/airflow_breeze/global_constants.py
index 35db4d4e530..97001746409 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -156,7 +156,7 @@ if MYSQL_INNOVATION_RELEASE:
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
-PIP_VERSION = "24.0"
+PIP_VERSION = "24.2"
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 5ffd604670b..695739a5e32 100755
--- a/scripts/ci/install_breeze.sh
+++ b/scripts/ci/install_breeze.sh
@@ -25,7 +25,7 @@ if [[ ${PYTHON_VERSION=} != "" ]]; then
PYTHON_ARG="--python=$(which python"${PYTHON_VERSION}") "
fi
-python -m pip install --upgrade pip==24.0
+python -m pip install --upgrade pip==24.2
python -m pip install "pipx>=1.4.1"
python -m pipx uninstall apache-airflow-breeze >/dev/null 2>&1 || true
# shellcheck disable=SC2086