Skip to content

Commit db1973c

Browse files
[main] CI: Upgrade important CI environment
1 parent e272ae7 commit db1973c

16 files changed

Lines changed: 1505 additions & 1085 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ repos:
495495
- --skip=providers/.*/src/airflow/providers/*/*.rst,providers/*/docs/changelog.rst,docs/*/commits.rst,providers/*/docs/commits.rst,providers/*/*/docs/commits.rst,docs/apache-airflow/tutorial/pipeline_example.csv,*.min.js,*.lock,INTHEWILD.md,*.svg
496496
- --exclude-file=.codespellignorelines
497497
- repo: https://github.com/woodruffw/zizmor-pre-commit
498-
rev: 64a97fb7fa63188393d3215c6e312f5f9c6d0f78 # frozen: v1.27.0
498+
rev: 067260dc5fe6ea86b7551bfd6f8b3ba4e6c93129 # frozen: v1.28.0
499499
hooks:
500500
- id: zizmor
501501
name: Run zizmor to check for github workflow syntax errors
@@ -605,7 +605,7 @@ repos:
605605
types_or: [python, pyi]
606606
args: [--fix]
607607
require_serial: true
608-
additional_dependencies: ['ruff==0.15.22']
608+
additional_dependencies: ['ruff==0.16.0']
609609
exclude: ^airflow-core/tests/unit/dags/test_imports\.py$|^performance/tests/test_.*\.py$
610610
- id: ruff-format
611611
name: Run 'ruff format'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ ARG PYTHON_LTO="true"
7373
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
7474
ARG AIRFLOW_PIP_VERSION=26.1.2
7575
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
76-
ARG AIRFLOW_UV_VERSION=0.11.29
76+
ARG AIRFLOW_UV_VERSION=0.11.32
7777
ARG AIRFLOW_USE_UV="false"
7878
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"
7979
ARG AIRFLOW_IMAGE_README_URL="https://raw.githubusercontent.com/apache/airflow/main/docs/docker-stack/README.md"

Dockerfile.ci

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1914,8 +1914,8 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
19141914
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
19151915
ARG AIRFLOW_PIP_VERSION=26.1.2
19161916
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1917-
ARG AIRFLOW_UV_VERSION=0.11.29
1918-
ARG AIRFLOW_PREK_VERSION="0.4.10"
1917+
ARG AIRFLOW_UV_VERSION=0.11.32
1918+
ARG AIRFLOW_PREK_VERSION="0.4.11"
19191919

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

airflow-core/docs/best-practices.rst

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

320320
.. code-block:: bash
321321
322-
pip install "ruff>=0.15.22"
322+
pip install "ruff>=0.16.0"
323323
324324
2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:
325325

airflow-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[build-system]
1919
requires = [
2020
"gitdb==4.0.12",
21-
"GitPython==3.1.52",
21+
"GitPython==3.1.55",
2222
"hatchling==1.31.0",
2323
"packaging==26.2",
2424
"pathspec==1.1.1",

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` | `26.1.2` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.11.29` | `uv` version used. |
447-
| `AIRFLOW_PREK_VERSION` | `0.4.10` | `prek` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.11.32` | `uv` version used. |
447+
| `AIRFLOW_PREK_VERSION` | `0.4.11` | `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
@@ -58,7 +58,7 @@ dependencies = [
5858
"jinja2>=3.1.5",
5959
"jsonschema>=4.19.1",
6060
"packaging>=25.0",
61-
"prek>=0.4.10",
61+
"prek>=0.4.11",
6262
"psutil>=5.9.6",
6363
"pygithub>=2.1.1",
6464
"pytest-xdist>=3.3.1",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ class VersionedFile(NamedTuple):
286286

287287

288288
AIRFLOW_PIP_VERSION = "26.1.2"
289-
AIRFLOW_UV_VERSION = "0.11.29"
289+
AIRFLOW_UV_VERSION = "0.11.32"
290290
AIRFLOW_USE_UV = False
291-
GITPYTHON_VERSION = "3.1.52"
291+
GITPYTHON_VERSION = "3.1.55"
292292
RICH_VERSION = "15.0.0"
293-
PREK_VERSION = "0.4.10"
293+
PREK_VERSION = "0.4.11"
294294
HATCH_VERSION = "1.17.1"
295295
PYYAML_VERSION = "6.0.3"
296296

dev/breeze/src/airflow_breeze/global_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb"]
299299

300300
PIP_VERSION = "26.1.2"
301-
UV_VERSION = "0.11.29"
301+
UV_VERSION = "0.11.32"
302302

303303
# packages that providers docs
304304
REGULAR_DOC_PACKAGES = [

0 commit comments

Comments
 (0)