Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/install-prek/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.27" # Keep this comment to allow automatic replacement of prek version
default: "0.0.28" # Keep this comment to allow automatic replacement of prek version
skip-prek-hooks:
description: "Skip some prek hooks from installation"
default: ""
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/basic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ jobs:
UPGRADE_PYTHON: "false"
UPGRADE_GOLANG: "true"
UPGRADE_PIP: "false"
UPGRADE_PREK: "false"
UPGRADE_PREK: "true"
UPGRADE_NODE_LTS: "false"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Run automated upgrade for important versions minus uv(failing if needed)"
Expand All @@ -305,7 +305,7 @@ jobs:
UPGRADE_PYTHON: "true"
UPGRADE_GOLANG: "false"
UPGRADE_PIP: "true"
UPGRADE_PREK: "true"
UPGRADE_PREK: "false"
UPGRADE_NODE_LTS: "true"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-amd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ jobs:
PR_LABELS: ${{ steps.source-run-info.outputs.pr-labels }}
GITHUB_CONTEXT: ${{ toJson(github) }}

run-pin-versions-prek:
name: "Run pin-versions prek"
run-pin-versions-hook:
name: "Run pin-versions hook"
needs: [build-info]
runs-on: ${{ fromJSON(needs.build-info.outputs.amd-runners) }}
steps:
Expand All @@ -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.27" # Keep this comment to allow automatic replacement of prek version
PREK_VERSION: "0.0.28" # 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}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ default_language_version:
python: python3
node: 22.18.0
golang: 1.24.0
minimum_prek_version: '0.0.26'
minimum_prek_version: '0.0.28'
exclude: ^.*/.*_vendor/
repos:
- repo: meta
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,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.27"
ARG AIRFLOW_PREK_VERSION="0.0.28"

ENV AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION} \
AIRFLOW_SETUPTOOLS_VERSION=${AIRFLOW_SETUPTOOLS_VERSION} \
Expand Down
2 changes: 1 addition & 1 deletion dev/breeze/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ PLEASE DO NOT MODIFY THE HASH BELOW! IT IS AUTOMATICALLY UPDATED BY PREK.

---------------------------------------------------------------------------------------------------------

Package config hash: f7538d369c430a85cf62ca690d2440413a7fd402aad414c9b5a571b42dc19bb2cf5c430287f30849a92a0e1849bc6353812d6cec1b92c0ec4cfc12f5273e35d1
Package config hash: 44115f7de7eedfe3274fc6754082b2d9c2a1a3e7600368186e28beca9ff2d92e1c8b339bb95107389e76c24993b23d94c14b73b06480e70a99da247a26f5b721

---------------------------------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion dev/breeze/doc/ci/02_images.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8` | `uv` version used. |
| `AIRFLOW_PREK_VERSION` | `0.0.27` | `prek` version used. |
| `AIRFLOW_PREK_VERSION` | `0.0.28` | `prek` version used. |
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |
| `PIP_PROGRESS_BAR` | `on` | Progress bar for PIP installation |

Expand Down
2 changes: 1 addition & 1 deletion dev/breeze/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies = [
"jinja2>=3.1.5",
"jsonschema>=4.19.1",
"packaging>=23.2",
"prek>=0.0.27",
"prek>=0.0.28",
"psutil>=5.9.6",
"pygithub>=2.1.1",
"pytest-xdist>=3.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.27"
PREK_VERSION = "0.0.28"
HATCH_VERSION = "1.14.1"
PYYAML_VERSION = "6.0.2"

Expand Down
Loading