Skip to content

Commit 4990335

Browse files
authored
CI: Upgrade important CI environment (apache#58247)
1 parent 1700dc1 commit 4990335

File tree

12 files changed

+52
-52
lines changed

12 files changed

+52
-52
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.8" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.9" # 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.8" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.9" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
3030
default: "0.2.13" # 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.8" # Keep this comment to allow automatic replacement of uv version
69+
default: "0.9.9" # 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.8" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.9.9" # Keep this comment to allow automatic replacement of uv version
6262
if: contains(fromJSON('[
6363
"ashb",
6464
"eladkal",

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=25.3
5858
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
59-
ARG AIRFLOW_UV_VERSION=0.9.8
59+
ARG AIRFLOW_UV_VERSION=0.9.9
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
@@ -1677,7 +1677,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
16771677
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
16781678
ARG AIRFLOW_PIP_VERSION=25.3
16791679
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1680-
ARG AIRFLOW_UV_VERSION=0.9.8
1680+
ARG AIRFLOW_UV_VERSION=0.9.9
16811681
ARG AIRFLOW_PREK_VERSION="0.2.13"
16821682

16831683
# UV_LINK_MODE=copy is needed since we are using cache mounted from the host

dev/breeze/doc/ci/02_images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ 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` | `25.3` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.9.8` | `uv` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.9.9` | `uv` version used. |
447447
| `AIRFLOW_PREK_VERSION` | `0.2.13` | `prek` version used. |
448448
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |
449449
| `PIP_PROGRESS_BAR` | `on` | Progress bar for PIP installation |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class VersionedFile(NamedTuple):
246246

247247

248248
AIRFLOW_PIP_VERSION = "25.3"
249-
AIRFLOW_UV_VERSION = "0.9.8"
249+
AIRFLOW_UV_VERSION = "0.9.9"
250250
AIRFLOW_USE_UV = False
251251
GITPYTHON_VERSION = "3.1.45"
252252
RICH_VERSION = "14.2.0"

dev/breeze/src/airflow_breeze/global_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
219219

220220
PIP_VERSION = "25.3"
221-
UV_VERSION = "0.9.8"
221+
UV_VERSION = "0.9.9"
222222

223223
DEFAULT_UV_HTTP_TIMEOUT = 300
224224
DEFAULT_WSL2_HTTP_TIMEOUT = 900

dev/breeze/uv.lock

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)