Skip to content

Commit 6c37aec

Browse files
authored
[v3-1-test] Upgrade important CI environment (#61428)
1 parent 1ae1c1e commit 6c37aec

File tree

25 files changed

+1037
-1039
lines changed

25 files changed

+1037
-1039
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.28" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.29" # 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.28" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.29" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
3030
default: "0.3.1" # 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.28" # Keep this comment to allow automatic replacement of uv version
69+
default: "0.9.29" # 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.28" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.9.29" # 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
@@ -370,7 +370,7 @@ repos:
370370
types_or: [python, pyi]
371371
args: [--fix]
372372
require_serial: true
373-
additional_dependencies: ['ruff==0.14.14']
373+
additional_dependencies: ['ruff==0.15.0']
374374
exclude: ^airflow-core/tests/unit/dags/test_imports\.py$|^performance/tests/test_.*\.py$
375375
- id: ruff-format
376376
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=26.0
5858
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
59-
ARG AIRFLOW_UV_VERSION=0.9.28
59+
ARG AIRFLOW_UV_VERSION=0.9.29
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
@@ -1709,7 +1709,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
17091709
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
17101710
ARG AIRFLOW_PIP_VERSION=26.0
17111711
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1712-
ARG AIRFLOW_UV_VERSION=0.9.28
1712+
ARG AIRFLOW_UV_VERSION=0.9.29
17131713
ARG AIRFLOW_PREK_VERSION="0.3.1"
17141714

17151715
# 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.14"
313+
pip install "ruff>=0.15.0"
314314
315315
2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:
316316

airflow-core/src/airflow/cli/cli_config.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,8 +457,10 @@ def string_lower_type(val):
457457
ARG_DB_TABLES = Arg(
458458
("-t", "--tables"),
459459
help=lazy_object_proxy.Proxy(
460-
lambda: f"Table names to perform maintenance on (use comma-separated list).\n"
461-
f"Options: {import_string('airflow.cli.commands.db_command.all_tables')}"
460+
lambda: (
461+
f"Table names to perform maintenance on (use comma-separated list).\n"
462+
f"Options: {import_string('airflow.cli.commands.db_command.all_tables')}"
463+
)
462464
),
463465
type=string_list_type,
464466
)

airflow-core/tests/unit/cli/commands/test_config_command.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,9 @@ def test_lint_with_invalid_section_option(self, stdout_capture):
345345
def test_lint_detects_multiple_issues(self, stdout_capture):
346346
with mock.patch(
347347
"airflow.configuration.conf.has_option",
348-
side_effect=lambda section, option, lookup_from_deprecated: option
349-
in ["check_slas", "strict_dataset_uri_validation"],
348+
side_effect=lambda section, option, lookup_from_deprecated: (
349+
option in ["check_slas", "strict_dataset_uri_validation"]
350+
),
350351
):
351352
with stdout_capture as temp_stdout:
352353
config_command.lint_config(cli_parser.get_parser().parse_args(["config", "lint"]))

0 commit comments

Comments
 (0)