diff --git a/.github/actions/install-prek/action.yml b/.github/actions/install-prek/action.yml index 5a92235d2f8b8..04990ea08e20f 100644 --- a/.github/actions/install-prek/action.yml +++ b/.github/actions/install-prek/action.yml @@ -27,7 +27,7 @@ inputs: default: "0.8.11" # Keep this comment to allow automatic replacement of uv version prek-version: description: 'prek version to use' - default: "0.0.26" # Keep this comment to allow automatic replacement of prek version + default: "0.0.27" # Keep this comment to allow automatic replacement of prek version skip-prek-hooks: description: "Skip some prek hooks from installation" default: "" diff --git a/.github/workflows/ci-amd.yml b/.github/workflows/ci-amd.yml index fa500f435c4a4..c3c35617e8f64 100644 --- a/.github/workflows/ci-amd.yml +++ b/.github/workflows/ci-amd.yml @@ -186,7 +186,7 @@ jobs: shell: bash env: UV_VERSION: "0.8.11" # Keep this comment to allow automatic replacement of uv version - PREK_VERSION: "0.0.26" # Keep this comment to allow automatic replacement of prek version + PREK_VERSION: "0.0.27" # Keep this comment to allow automatic replacement of prek version run: | pip install uv==${UV_VERSION} || true uv tool install prek==${PREK_VERSION} --with uv==${UV_VERSION} diff --git a/Dockerfile.ci b/Dockerfile.ci index 30d65032149ec..43ae489f418d0 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1466,7 +1466,7 @@ ARG AIRFLOW_PIP_VERSION=25.2 ARG AIRFLOW_SETUPTOOLS_VERSION=80.9.0 ARG AIRFLOW_UV_VERSION=0.8.11 # TODO(potiuk): automate with upgrade check (possibly) -ARG AIRFLOW_PREK_VERSION="0.0.26" +ARG AIRFLOW_PREK_VERSION="0.0.27" ENV AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION} \ AIRFLOW_SETUPTOOLS_VERSION=${AIRFLOW_SETUPTOOLS_VERSION} \ diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md index 41edea67d6431..2bb4db38549ff 100644 --- a/dev/breeze/doc/ci/02_images.md +++ b/dev/breeze/doc/ci/02_images.md @@ -444,7 +444,7 @@ can be used for CI images: | `ADDITIONAL_DEV_APT_ENV` | | Additional env variables defined when installing dev deps | | `AIRFLOW_PIP_VERSION` | `25.2` | `pip` version used. | | `AIRFLOW_UV_VERSION` | `0.8.11` | `uv` version used. | -| `AIRFLOW_PREK_VERSION` | `0.0.26` | `prek` version used. | +| `AIRFLOW_PREK_VERSION` | `0.0.27` | `prek` 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/pyproject.toml b/dev/breeze/pyproject.toml index 33ee72edc8705..000aa4ad9b573 100644 --- a/dev/breeze/pyproject.toml +++ b/dev/breeze/pyproject.toml @@ -60,7 +60,7 @@ dependencies = [ "jinja2>=3.1.5", "jsonschema>=4.19.1", "packaging>=25.0", - "prek>=0.0.26", + "prek>=0.0.27", "psutil>=5.9.6", "pygithub>=2.1.1", "pytest-xdist>=3.3.1", 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 004a41bffda99..fbef334559991 100644 --- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py +++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py @@ -249,7 +249,7 @@ class VersionedFile(NamedTuple): AIRFLOW_USE_UV = False GITPYTHON_VERSION = "3.1.45" RICH_VERSION = "14.1.0" -PREK_VERSION = "0.0.26" +PREK_VERSION = "0.0.27" HATCH_VERSION = "1.14.1" PYYAML_VERSION = "6.0.2"