Skip to content

Commit e3e2279

Browse files
potiuknailo2c
authored andcommitted
Update to latest uv version (apache#47605)
1 parent 99f74a8 commit e3e2279

File tree

9 files changed

+17
-16
lines changed

9 files changed

+17
-16
lines changed

.github/actions/install-pre-commit/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
default: "3.9"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.6.3" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.6.5" # Keep this comment to allow automatic replacement of uv version
2828
pre-commit-version:
2929
description: 'pre-commit version to use'
3030
default: "4.1.0" # Keep this comment to allow automatic replacement of pre-commit version

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
5555
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
5656
ARG AIRFLOW_PIP_VERSION=25.0.1
5757
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
58-
ARG AIRFLOW_UV_VERSION=0.6.3
58+
ARG AIRFLOW_UV_VERSION=0.6.5
5959
ARG AIRFLOW_USE_UV="false"
6060
ARG UV_HTTP_TIMEOUT="300"
6161
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"

Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
12441244
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
12451245
ARG AIRFLOW_PIP_VERSION=25.0.1
12461246
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1247-
ARG AIRFLOW_UV_VERSION=0.6.3
1247+
ARG AIRFLOW_UV_VERSION=0.6.5
12481248
# TODO(potiuk): automate with upgrade check (possibly)
12491249
ARG AIRFLOW_PRE_COMMIT_VERSION="4.1.0"
12501250
ARG AIRFLOW_PRE_COMMIT_UV_VERSION="4.1.4"

dev/breeze/doc/ci/02_images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ can be used for CI images:
443443
| `ADDITIONAL_DEV_APT_DEPS` | | Additional apt dev dependencies installed in the first part of the image |
444444
| `ADDITIONAL_DEV_APT_ENV` | | Additional env variables defined when installing dev deps |
445445
| `AIRFLOW_PIP_VERSION` | `25.0.1` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.6.3` | `uv` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.6.5` | `uv` version used. |
447447
| `AIRFLOW_PRE_COMMIT_VERSION` | `4.1.0` | `pre-commit` version used. |
448448
| `AIRFLOW_PRE_COMMIT_UV_VERSION` | `4.1.4` | `pre-commit-uv` version used. |
449449
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |

dev/breeze/src/airflow_breeze/commands/release_management_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class VersionedFile(NamedTuple):
235235

236236

237237
AIRFLOW_PIP_VERSION = "25.0.1"
238-
AIRFLOW_UV_VERSION = "0.6.3"
238+
AIRFLOW_UV_VERSION = "0.6.5"
239239
AIRFLOW_USE_UV = False
240240
# TODO: automate these as well
241241
WHEEL_VERSION = "0.44.0"

dev/breeze/src/airflow_breeze/global_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
194194

195195
PIP_VERSION = "25.0.1"
196-
UV_VERSION = "0.6.3"
196+
UV_VERSION = "0.6.5"
197197

198198
DEFAULT_UV_HTTP_TIMEOUT = 300
199199
DEFAULT_WSL2_HTTP_TIMEOUT = 900

dev/breeze/uv.lock

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/ci/install_breeze.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
2222
PYTHON_ARG=""
2323

2424
PIP_VERSION="25.0.1"
25-
UV_VERSION="0.6.3"
25+
UV_VERSION="0.6.5"
2626
if [[ ${PYTHON_VERSION=} != "" ]]; then
2727
PYTHON_ARG="--python=$(which python"${PYTHON_VERSION}") "
2828
fi

scripts/tools/setup_breeze

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ COLOR_YELLOW=$'\e[33m'
2727
COLOR_BLUE=$'\e[34m'
2828
COLOR_RESET=$'\e[0m'
2929

30-
UV_VERSION="0.6.3"
30+
UV_VERSION="0.6.5"
3131

3232
function manual_instructions() {
3333
echo

0 commit comments

Comments
 (0)