Skip to content

Commit 0699930

Browse files
authored
CI: Upgrade important CI environment (#62610)
1 parent 66bf73f commit 0699930

File tree

40 files changed

+1022
-1149
lines changed

40 files changed

+1022
-1149
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.10.6" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.10.7" # 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.10.6" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.10.7" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
30-
default: "0.3.3" # Keep this comment to allow automatic replacement of prek version
30+
default: "0.3.4" # Keep this comment to allow automatic replacement of prek version
3131
save-cache:
3232
description: "Whether to save prek cache"
3333
required: true

.github/workflows/basic-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ on: # yamllint disable-line rule:truthy
7070
type: string
7171
uv-version:
7272
description: 'uv version to use'
73-
default: "0.10.6" # Keep this comment to allow automatic replacement of uv version
73+
default: "0.10.7" # Keep this comment to allow automatic replacement of uv version
7474
type: string
7575
platform:
7676
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.10.6" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.10.7" # Keep this comment to allow automatic replacement of uv version
6262
if: contains(fromJSON('[
6363
"ashb",
6464
"bugraoz93",

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.0.1
7575
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
76-
ARG AIRFLOW_UV_VERSION=0.10.6
76+
ARG AIRFLOW_UV_VERSION=0.10.7
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
@@ -1733,8 +1733,8 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
17331733
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
17341734
ARG AIRFLOW_PIP_VERSION=26.0.1
17351735
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1736-
ARG AIRFLOW_UV_VERSION=0.10.6
1737-
ARG AIRFLOW_PREK_VERSION="0.3.3"
1736+
ARG AIRFLOW_UV_VERSION=0.10.7
1737+
ARG AIRFLOW_PREK_VERSION="0.3.4"
17381738

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

airflow-core/pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,15 @@
1717

1818
[build-system]
1919
requires = [
20-
"distlib==0.4.0",
21-
"filelock==3.24.3",
2220
"gitdb==4.0.12",
2321
"GitPython==3.1.46",
2422
"hatchling==1.29.0",
2523
"packaging==26.0",
2624
"pathspec==1.0.4",
27-
"platformdirs==4.9.2",
2825
"pluggy==1.6.0",
2926
"smmap==5.0.2",
3027
"tomli==2.4.0; python_version < '3.11'",
3128
"trove-classifiers==2026.1.14.14",
32-
"typing-extensions==4.15.0; python_version < '3.11'",
33-
"virtualenv==20.39.1",
3429
]
3530
build-backend = "hatchling.build"
3631

airflow-ctl-tests/pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,12 @@
1818

1919
[build-system]
2020
requires = [
21-
"distlib==0.4.0",
22-
"filelock==3.24.3",
2321
"hatchling==1.29.0",
2422
"packaging==26.0",
2523
"pathspec==1.0.4",
26-
"platformdirs==4.9.2",
2724
"pluggy==1.6.0",
2825
"tomli==2.4.0; python_version < '3.11'",
2926
"trove-classifiers==2026.1.14.14",
30-
"typing-extensions==4.15.0; python_version < '3.11'",
31-
"virtualenv==20.39.1",
3227
]
3328
build-backend = "hatchling.build"
3429

airflow-ctl/pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,12 @@ airflowctl = "airflowctl.__main__:main"
7070

7171
[build-system]
7272
requires = [
73-
"distlib==0.4.0",
74-
"filelock==3.24.3",
7573
"hatchling==1.29.0",
7674
"packaging==26.0",
7775
"pathspec==1.0.4",
78-
"platformdirs==4.9.2",
7976
"pluggy==1.6.0",
8077
"tomli==2.4.0; python_version < '3.11'",
8178
"trove-classifiers==2026.1.14.14",
82-
"typing-extensions==4.15.0; python_version < '3.11'",
83-
"virtualenv==20.39.1",
8479
]
8580
build-backend = "hatchling.build"
8681

airflow-e2e-tests/pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,12 @@
1717

1818
[build-system]
1919
requires = [
20-
"distlib==0.4.0",
21-
"filelock==3.24.3",
2220
"hatchling==1.29.0",
2321
"packaging==26.0",
2422
"pathspec==1.0.4",
25-
"platformdirs==4.9.2",
2623
"pluggy==1.6.0",
2724
"tomli==2.4.0; python_version < '3.11'",
2825
"trove-classifiers==2026.1.14.14",
29-
"typing-extensions==4.15.0; python_version < '3.11'",
30-
"virtualenv==20.39.1",
3126
]
3227
build-backend = "hatchling.build"
3328

0 commit comments

Comments
 (0)