Skip to content

Commit 2c62f88

Browse files
authored
Bump uv version to 0.8.24 and prek to 0.2.4 (apache#56464)
1 parent d448d08 commit 2c62f88

File tree

14 files changed

+41
-41
lines changed

14 files changed

+41
-41
lines changed

.github/actions/install-prek/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.8.22" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.8.24" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
30-
default: "0.2.3" # Keep this comment to allow automatic replacement of prek version
30+
default: "0.2.4" # Keep this comment to allow automatic replacement of prek version
3131
skip-prek-hooks:
3232
description: "Skip some prek hooks from installation"
3333
default: ""

.github/workflows/basic-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ on: # yamllint disable-line rule:truthy
6666
type: string
6767
uv-version:
6868
description: 'uv version to use'
69-
default: "0.8.22" # Keep this comment to allow automatic replacement of uv version
69+
default: "0.8.24" # Keep this comment to allow automatic replacement of uv version
7070
type: string
7171
platform:
7272
description: 'Platform for the build - linux/amd64 or linux/arm64'

.github/workflows/release_dockerhub_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
AIRFLOW_VERSION: ${{ github.event.inputs.airflowVersion }}
5959
AMD_ONLY: ${{ github.event.inputs.amdOnly }}
6060
LIMIT_PYTHON_VERSIONS: ${{ github.event.inputs.limitPythonVersions }}
61-
UV_VERSION: "0.8.22" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.8.24" # Keep this comment to allow automatic replacement of uv version
6262
if: contains(fromJSON('[
6363
"ashb",
6464
"eladkal",

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ARG AIRFLOW_PYTHON_VERSION="3.12.11"
5656
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
5757
ARG AIRFLOW_PIP_VERSION=25.2
5858
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
59-
ARG AIRFLOW_UV_VERSION=0.8.22
59+
ARG AIRFLOW_UV_VERSION=0.8.24
6060
ARG AIRFLOW_USE_UV="false"
6161
ARG UV_HTTP_TIMEOUT="300"
6262
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"

Dockerfile.ci

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1677,8 +1677,8 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
16771677
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
16781678
ARG AIRFLOW_PIP_VERSION=25.2
16791679
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1680-
ARG AIRFLOW_UV_VERSION=0.8.22
1681-
ARG AIRFLOW_PREK_VERSION="0.2.3"
1680+
ARG AIRFLOW_UV_VERSION=0.8.24
1681+
ARG AIRFLOW_PREK_VERSION="0.2.4"
16821682

16831683
# UV_LINK_MODE=copy is needed since we are using cache mounted from the host
16841684
ENV AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION} \

dev/breeze/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,6 @@ PLEASE DO NOT MODIFY THE HASH BELOW! IT IS AUTOMATICALLY UPDATED BY PREK.
135135

136136
---------------------------------------------------------------------------------------------------------
137137

138-
Package config hash: 71b4a2063359e3487de35d5f6b6acc11096799ccf64bf9e4497a3c7d258cba5fca384e8e199b5933bb1c46c262bdf3ff636167c8863b48905cb31cd10b3312c5
138+
Package config hash: 6687b6346fb381d91da41c55af54c2ba6c4363c0eca4a063db0bb9babb41820a70a89b34c9e88b71cfbbd7cfd272f3ee90b5b1d04e2c78252c28f39307443ca0
139139

140140
---------------------------------------------------------------------------------------------------------

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,8 +443,8 @@ 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.2` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.8.22` | `uv` version used. |
447-
| `AIRFLOW_PREK_VERSION` | `0.2.3` | `prek` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.8.24` | `uv` version used. |
447+
| `AIRFLOW_PREK_VERSION` | `0.2.4` | `prek` version used. |
448448
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |
449449
| `PIP_PROGRESS_BAR` | `on` | Progress bar for PIP installation |
450450

dev/breeze/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies = [
6060
"jinja2>=3.1.5",
6161
"jsonschema>=4.19.1",
6262
"packaging>=25.0",
63-
"prek>=0.2.3",
63+
"prek>=0.2.4",
6464
"psutil>=5.9.6",
6565
"pygithub>=2.1.1",
6666
"pytest-xdist>=3.3.1",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,11 +260,11 @@ class VersionedFile(NamedTuple):
260260

261261

262262
AIRFLOW_PIP_VERSION = "25.2"
263-
AIRFLOW_UV_VERSION = "0.8.22"
263+
AIRFLOW_UV_VERSION = "0.8.24"
264264
AIRFLOW_USE_UV = False
265265
GITPYTHON_VERSION = "3.1.45"
266266
RICH_VERSION = "14.1.0"
267-
PREK_VERSION = "0.2.3"
267+
PREK_VERSION = "0.2.4"
268268
HATCH_VERSION = "1.14.2"
269269
PYYAML_VERSION = "6.0.3"
270270

dev/breeze/src/airflow_breeze/global_constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
204204

205205
PIP_VERSION = "25.2"
206-
UV_VERSION = "0.8.22"
206+
UV_VERSION = "0.8.24"
207207

208208
DEFAULT_UV_HTTP_TIMEOUT = 300
209209
DEFAULT_WSL2_HTTP_TIMEOUT = 900
@@ -806,7 +806,7 @@ def generate_provider_dependencies_if_needed():
806806
"3.10": "3.10.18",
807807
"3.11": "3.11.13",
808808
"3.12": "3.12.11",
809-
"3.13": "3.13.7",
809+
"3.13": "3.13.8",
810810
}
811811

812812
# Number of slices for low dep tests

0 commit comments

Comments
 (0)