Skip to content

Commit 762ab91

Browse files
authored
build: upgrade uv to 0.9.17, prek to 0.2.21, ruff to 0.14.9 (#59353)
1 parent fad5cf2 commit 762ab91

File tree

17 files changed

+47
-47
lines changed

17 files changed

+47
-47
lines changed

.github/actions/breeze/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.9.16" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.17" # Keep this comment to allow automatic replacement of uv version
2828
outputs:
2929
host-python-version:
3030
description: Python version used in host

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.9.16" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.17" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
3030
default: "0.2.21" # Keep this comment to allow automatic replacement of prek version

.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.9.16" # Keep this comment to allow automatic replacement of uv version
69+
default: "0.9.17" # 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.9.16" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.9.17" # Keep this comment to allow automatic replacement of uv version
6262
if: contains(fromJSON('[
6363
"ashb",
6464
"bugraoz93",

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ repos:
350350
types_or: [python, pyi]
351351
args: [--fix]
352352
require_serial: true
353-
additional_dependencies: ['ruff==0.14.8']
353+
additional_dependencies: ['ruff==0.14.9']
354354
exclude: ^airflow-core/tests/unit/dags/test_imports\.py$|^performance/tests/test_.*\.py$
355355
- id: ruff-format
356356
name: Run 'ruff format'

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.12"
5656
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
5757
ARG AIRFLOW_PIP_VERSION=25.3
5858
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
59-
ARG AIRFLOW_UV_VERSION=0.9.16
59+
ARG AIRFLOW_UV_VERSION=0.9.17
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1699,7 +1699,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
16991699
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
17001700
ARG AIRFLOW_PIP_VERSION=25.3
17011701
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1702-
ARG AIRFLOW_UV_VERSION=0.9.16
1702+
ARG AIRFLOW_UV_VERSION=0.9.17
17031703
ARG AIRFLOW_PREK_VERSION="0.2.21"
17041704

17051705
# UV_LINK_MODE=copy is needed since we are using cache mounted from the host

airflow-core/docs/best-practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Installing and Using ruff
310310

311311
.. code-block:: bash
312312
313-
pip install "ruff>=0.14.8"
313+
pip install "ruff>=0.14.9"
314314
315315
2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:
316316

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.3` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.9.16` | `uv` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.9.17` | `uv` version used. |
447447
| `AIRFLOW_PREK_VERSION` | `0.2.21` | `prek` version used. |
448448
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |
449449
| `PIP_PROGRESS_BAR` | `on` | Progress bar for PIP 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
@@ -254,7 +254,7 @@ class VersionedFile(NamedTuple):
254254

255255

256256
AIRFLOW_PIP_VERSION = "25.3"
257-
AIRFLOW_UV_VERSION = "0.9.16"
257+
AIRFLOW_UV_VERSION = "0.9.17"
258258
AIRFLOW_USE_UV = False
259259
GITPYTHON_VERSION = "3.1.45"
260260
RICH_VERSION = "14.2.0"

0 commit comments

Comments
 (0)