This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 22cf5aed658 CI: Upgrade important CI environment (#64400)
22cf5aed658 is described below

commit 22cf5aed658f59e85d97f58a7c0adb9959273c2c
Author: Jens Scheffler <[email protected]>
AuthorDate: Sun Mar 29 15:20:37 2026 +0200

    CI: Upgrade important CI environment (#64400)
---
 .github/actions/breeze/action.yml                  |  2 +-
 .github/actions/install-prek/action.yml            |  2 +-
 .github/workflows/basic-tests.yml                  |  2 +-
 .github/workflows/ci-amd-arm.yml                   |  2 +-
 .github/workflows/release_dockerhub_image.yml      |  2 +-
 Dockerfile                                         |  2 +-
 Dockerfile.ci                                      |  2 +-
 dev/breeze/doc/ci/02_images.md                     |  2 +-
 .../commands/release_management_commands.py        |  2 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |  2 +-
 dev/breeze/uv.lock                                 | 64 +++++++++++-----------
 pyproject.toml                                     |  2 +-
 scripts/tools/setup_breeze                         |  2 +-
 uv.lock                                            | 28 ++++++++--
 14 files changed, 68 insertions(+), 48 deletions(-)

diff --git a/.github/actions/breeze/action.yml 
b/.github/actions/breeze/action.yml
index 80b69f5eb4d..dee5f48eb16 100644
--- a/.github/actions/breeze/action.yml
+++ b/.github/actions/breeze/action.yml
@@ -24,7 +24,7 @@ inputs:
     default: "3.10"
   uv-version:
     description: 'uv version to use'
-    default: "0.10.12"  # Keep this comment to allow automatic replacement of 
uv version
+    default: "0.11.1"  # Keep this comment to allow automatic replacement of 
uv version
 outputs:
   host-python-version:
     description: Python version used in host
diff --git a/.github/actions/install-prek/action.yml 
b/.github/actions/install-prek/action.yml
index a1554260d40..4f2cbc47e1b 100644
--- a/.github/actions/install-prek/action.yml
+++ b/.github/actions/install-prek/action.yml
@@ -24,7 +24,7 @@ inputs:
     default: "3.10"
   uv-version:
     description: 'uv version to use'
-    default: "0.10.12"  # Keep this comment to allow automatic replacement of 
uv version
+    default: "0.11.1"  # Keep this comment to allow automatic replacement of 
uv version
   prek-version:
     description: 'prek version to use'
     default: "0.3.8"  # Keep this comment to allow automatic replacement of 
prek version
diff --git a/.github/workflows/basic-tests.yml 
b/.github/workflows/basic-tests.yml
index a37b06c49c9..87909137c1a 100644
--- a/.github/workflows/basic-tests.yml
+++ b/.github/workflows/basic-tests.yml
@@ -74,7 +74,7 @@ on:  # yamllint disable-line rule:truthy
         type: string
       uv-version:
         description: 'uv version to use'
-        default: "0.10.12"  # Keep this comment to allow automatic replacement 
of uv version
+        default: "0.11.1"  # Keep this comment to allow automatic replacement 
of uv version
         type: string
       platform:
         description: 'Platform for the build - linux/amd64 or linux/arm64'
diff --git a/.github/workflows/ci-amd-arm.yml b/.github/workflows/ci-amd-arm.yml
index 25b9ac4e64c..53f0a09764a 100644
--- a/.github/workflows/ci-amd-arm.yml
+++ b/.github/workflows/ci-amd-arm.yml
@@ -40,7 +40,7 @@ env:
   GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
   GITHUB_USERNAME: ${{ github.actor }}
   SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
-  UV_VERSION: "0.10.12"  # Keep this comment to allow automatic replacement of 
uv version
+  UV_VERSION: "0.11.1"  # Keep this comment to allow automatic replacement of 
uv version
   VERBOSE: "true"
 
 concurrency:
diff --git a/.github/workflows/release_dockerhub_image.yml 
b/.github/workflows/release_dockerhub_image.yml
index bee1781e199..67750688f29 100644
--- a/.github/workflows/release_dockerhub_image.yml
+++ b/.github/workflows/release_dockerhub_image.yml
@@ -58,7 +58,7 @@ jobs:
       AIRFLOW_VERSION: ${{ github.event.inputs.airflowVersion }}
       AMD_ONLY: ${{ github.event.inputs.amdOnly }}
       LIMIT_PYTHON_VERSIONS: ${{ github.event.inputs.limitPythonVersions }}
-      UV_VERSION: "0.10.12"  # Keep this comment to allow automatic 
replacement of uv version
+      UV_VERSION: "0.11.1"  # Keep this comment to allow automatic replacement 
of uv version
     if: contains(fromJSON('[
       "ashb",
       "bugraoz93",
diff --git a/Dockerfile b/Dockerfile
index 10ecf18d2cf..99da5349899 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -73,7 +73,7 @@ ARG PYTHON_LTO="true"
 # Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
 ARG AIRFLOW_PIP_VERSION=26.0.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.10.12
+ARG AIRFLOW_UV_VERSION=0.11.1
 ARG AIRFLOW_USE_UV="false"
 ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow";
 ARG 
AIRFLOW_IMAGE_README_URL="https://raw.githubusercontent.com/apache/airflow/main/docs/docker-stack/README.md";
diff --git a/Dockerfile.ci b/Dockerfile.ci
index 3e84c8311de..1c51fa87506 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1777,7 +1777,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh 
install_additional_depe
 # Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
 ARG AIRFLOW_PIP_VERSION=26.0.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
-ARG AIRFLOW_UV_VERSION=0.10.12
+ARG AIRFLOW_UV_VERSION=0.11.1
 ARG AIRFLOW_PREK_VERSION="0.3.8"
 
 # UV_LINK_MODE=copy is needed since we are using cache mounted from the host
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index 4cc0a7233fb..acabc76c32a 100644
--- a/dev/breeze/doc/ci/02_images.md
+++ b/dev/breeze/doc/ci/02_images.md
@@ -443,7 +443,7 @@ can be used for CI images:
 | `ADDITIONAL_DEV_APT_DEPS`         |                             | Additional 
apt dev dependencies installed in the first part of the image                   
                       |
 | `ADDITIONAL_DEV_APT_ENV`          |                             | Additional 
env variables defined when installing dev deps                                  
                       |
 | `AIRFLOW_PIP_VERSION`             | `26.0.1`                    | `pip` 
version used.                                                                   
                            |
-| `AIRFLOW_UV_VERSION`              | `0.10.12`                    | `uv` 
version used.                                                                   
                             |
+| `AIRFLOW_UV_VERSION`              | `0.11.1`                     | `uv` 
version used.                                                                   
                             |
 | `AIRFLOW_PREK_VERSION`            | `0.3.8`                     | `prek` 
version used.                                                                   
                           |
 | `AIRFLOW_USE_UV`                  | `true`                      | Whether to 
use UV for installation.                                                        
                       |
 | `PIP_PROGRESS_BAR`                | `on`                        | Progress 
bar for PIP installation                                                        
                         |
diff --git 
a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py 
b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
index 79b913649ad..65f6fafc9c8 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -260,7 +260,7 @@ class VersionedFile(NamedTuple):
 
 
 AIRFLOW_PIP_VERSION = "26.0.1"
-AIRFLOW_UV_VERSION = "0.10.12"
+AIRFLOW_UV_VERSION = "0.11.1"
 AIRFLOW_USE_UV = False
 GITPYTHON_VERSION = "3.1.46"
 RICH_VERSION = "14.3.3"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index 0a7ba626ec5..094d69ce061 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -281,7 +281,7 @@ if MYSQL_INNOVATION_RELEASE:
 ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb"]
 
 PIP_VERSION = "26.0.1"
-UV_VERSION = "0.10.12"
+UV_VERSION = "0.11.1"
 
 # packages that providers docs
 REGULAR_DOC_PACKAGES = [
diff --git a/dev/breeze/uv.lock b/dev/breeze/uv.lock
index 8d71c0b5d6e..6172301f013 100644
--- a/dev/breeze/uv.lock
+++ b/dev/breeze/uv.lock
@@ -7,21 +7,21 @@ resolution-markers = [
 ]
 
 [options]
-exclude-newer = "2026-03-23T19:33:20.062938649Z"
+exclude-newer = "2026-03-25T09:21:12.053476763Z"
 exclude-newer-span = "P4D"
 
 [[package]]
 name = "anyio"
-version = "4.12.1"
+version = "4.13.0"
 source = { registry = "https://pypi.org/simple"; }
 dependencies = [
     { name = "exceptiongroup", marker = "python_full_version < '3.11'" },
     { name = "idna" },
     { name = "typing-extensions", marker = "python_full_version < '3.13'" },
 ]
-sdist = { url = 
"https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz";,
 hash = 
"sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size 
= 228685, upload-time = "2026-01-06T11:45:21.246Z" }
+sdist = { url = 
"https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz";,
 hash = 
"sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size 
= 231622, upload-time = "2026-03-24T12:59:09.671Z" }
 wheels = [
-    { url = 
"https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl";,
 hash = 
"sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size 
= 113592, upload-time = "2026-01-06T11:45:19.497Z" },
+    { url = 
"https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl";,
 hash = 
"sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size 
= 114353, upload-time = "2026-03-24T12:59:08.246Z" },
 ]
 
 [[package]]
@@ -264,30 +264,30 @@ wheels = [
 
 [[package]]
 name = "boto3"
-version = "1.42.73"
+version = "1.42.75"
 source = { registry = "https://pypi.org/simple"; }
 dependencies = [
     { name = "botocore" },
     { name = "jmespath" },
     { name = "s3transfer" },
 ]
-sdist = { url = 
"https://files.pythonhosted.org/packages/e4/8b/d00575be514744ca4839e7d85bf4a8a3c7b6b4574433291e58d14c68ae09/boto3-1.42.73.tar.gz";,
 hash = 
"sha256:d37b58d6cd452ca808dd6823ae19ca65b6244096c5125ef9052988b337298bae", size 
= 112775, upload-time = "2026-03-20T19:39:52.814Z" }
+sdist = { url = 
"https://files.pythonhosted.org/packages/78/1c/f836f5e52095a3374eee9317f980a22d9139477fe6277498ebf4406e35b4/boto3-1.42.75.tar.gz";,
 hash = 
"sha256:3c7fd95a50c69271bd7707b7eda07dcfddb30e961a392613010f7ee81d91acb3", size 
= 112812, upload-time = "2026-03-24T21:14:00.529Z" }
 wheels = [
-    { url = 
"https://files.pythonhosted.org/packages/aa/05/1fcf03d90abaa3d0b42a6bfd10231dd709493ecbacf794aa2eea5eae6841/boto3-1.42.73-py3-none-any.whl";,
 hash = 
"sha256:1f81b79b873f130eeab14bb556417a7c66d38f3396b7f2fe3b958b3f9094f455", size 
= 140556, upload-time = "2026-03-20T19:39:50.298Z" },
+    { url = 
"https://files.pythonhosted.org/packages/6b/31/c04caef287a0ea507ba634f2280dbe8314d89c1d8da1aef648b661ad1201/boto3-1.42.75-py3-none-any.whl";,
 hash = 
"sha256:16bc657d16403ee8e11c8b6920c245629e37a36ea60352b919da566f82b4cb4c", size 
= 140556, upload-time = "2026-03-24T21:13:58.004Z" },
 ]
 
 [[package]]
 name = "botocore"
-version = "1.42.73"
+version = "1.42.75"
 source = { registry = "https://pypi.org/simple"; }
 dependencies = [
     { name = "jmespath" },
     { name = "python-dateutil" },
     { name = "urllib3" },
 ]
-sdist = { url = 
"https://files.pythonhosted.org/packages/28/23/0c88ca116ef63b1ae77c901cd5d2095d22a8dbde9e80df74545db4a061b4/botocore-1.42.73.tar.gz";,
 hash = 
"sha256:575858641e4949aaf2af1ced145b8524529edf006d075877af6b82ff96ad854c", size 
= 15008008, upload-time = "2026-03-20T19:39:40.082Z" }
+sdist = { url = 
"https://files.pythonhosted.org/packages/9d/05/b16d6ac5eea465d42e65941436eab7d2e6f6ebef01ba4d70b6f5d0b992ce/botocore-1.42.75.tar.gz";,
 hash = 
"sha256:95c8e716b6be903ee1601531caa4f50217400aa877c18fe9a2c3047d2945d477", size 
= 15016308, upload-time = "2026-03-24T21:13:48.802Z" }
 wheels = [
-    { url = 
"https://files.pythonhosted.org/packages/8e/65/971f3d55015f4d133a6ff3ad74cd39f4b8dd8f53f7775a3c2ad378ea5145/botocore-1.42.73-py3-none-any.whl";,
 hash = 
"sha256:7b62e2a12f7a1b08eb7360eecd23bb16fe3b7ab7f5617cf91b25476c6f86a0fe", size 
= 14681861, upload-time = "2026-03-20T19:39:35.341Z" },
+    { url = 
"https://files.pythonhosted.org/packages/04/21/22148ff8d37d8706fc63cdc8ec292f4abbbd18b500d9970f6172f7f3bb30/botocore-1.42.75-py3-none-any.whl";,
 hash = 
"sha256:915e43b7ac8f50cf3dbc937ba713de5acb999ea48ad8fecd1589d92ad415f787", size 
= 14689910, upload-time = "2026-03-24T21:13:43.939Z" },
 ]
 
 [[package]]
@@ -2082,28 +2082,28 @@ wheels = [
 
 [[package]]
 name = "uv"
-version = "0.10.12"
-source = { registry = "https://pypi.org/simple"; }
-sdist = { url = 
"https://files.pythonhosted.org/packages/8d/b7/6a27678654caa7f2240d9c5be9bd032bfff90a58858f0078575e7a9b6d9f/uv-0.10.12.tar.gz";,
 hash = 
"sha256:fa722691c7ae5c023778ad0b040ab8619367bcfe44fd0d9e05a58751af86cdf8", size 
= 3988720, upload-time = "2026-03-19T21:50:41.015Z" }
-wheels = [
-    { url = 
"https://files.pythonhosted.org/packages/fe/aa/dde1b7300f8e924606ab0fe192aa25ca79736c5883ee40310ba8a5b34042/uv-0.10.12-py3-none-linux_armv6l.whl";,
 hash = 
"sha256:7099bdefffbe2df81accad52579657b8f9f870170caa779049c9fd82d645c9b3", size 
= 22662810, upload-time = "2026-03-19T21:50:43.108Z" },
-    { url = 
"https://files.pythonhosted.org/packages/5c/90/4fd10d7337a084847403cdbff288395a6a12adbaaac975943df4f46c2d31/uv-0.10.12-py3-none-macosx_10_12_x86_64.whl";,
 hash = 
"sha256:e0f0ef58f0ba6fbfaf5f91b67aad6852252c49b8f78015a2a5800cf74c7538d5", size 
= 21852701, upload-time = "2026-03-19T21:51:06.216Z" },
-    { url = 
"https://files.pythonhosted.org/packages/ce/db/c41ace81b8ef5d5952433df38e321c0b6e5f88ce210c508b14f84817963f/uv-0.10.12-py3-none-macosx_11_0_arm64.whl";,
 hash = 
"sha256:551f799d53e397843b6cde7e3c61de716fb487da512a21a954b7d0cbc06967e0", size 
= 20454594, upload-time = "2026-03-19T21:50:53.693Z" },
-    { url = 
"https://files.pythonhosted.org/packages/5d/07/a990708c5ba064b4eb1a289f1e9c484ebf5c1a0ea8cad049c86625f3b467/uv-0.10.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl";,
 hash = 
"sha256:a5afe619e8a861fe4d49df8e10d2c6963de0dac6b79350c4832bf3366c8496cf", size 
= 22212546, upload-time = "2026-03-19T21:51:08.76Z" },
-    { url = 
"https://files.pythonhosted.org/packages/b7/26/7f5ac4af027846c24bd7bf0edbd48b805f9e7daec145c62c632b5ce94e5f/uv-0.10.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl";,
 hash = 
"sha256:8dc352c93a47a4760cf824c31c55ce26511af780481e8f67c796d2779acaa928", size 
= 22278457, upload-time = "2026-03-19T21:51:19.895Z" },
-    { url = 
"https://files.pythonhosted.org/packages/02/00/c9043c73fb958482c9b42ad39ba81d1bd1ceffef11c4757412cb17f12316/uv-0.10.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl";,
 hash = 
"sha256:bd84379292e3c1a1bf0a05847c7c72b66bb581dccf8da1ef94cc82bf517efa7c", size 
= 22239751, upload-time = "2026-03-19T21:50:51.25Z" },
-    { url = 
"https://files.pythonhosted.org/packages/5c/d1/31fe74bf2a049446dd95213890ffed98f733d0f5e3badafec59164951608/uv-0.10.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl";,
 hash = 
"sha256:2ace05115bd9ee1b30d341728257fe051817c4c0a652c085c90d4bd4fb0bc8f2", size 
= 23697005, upload-time = "2026-03-19T21:50:48.767Z" },
-    { url = 
"https://files.pythonhosted.org/packages/8b/9a/dd58ef59e622a1651e181ec5b7d304ae482e591f28a864c474d09ea00aff/uv-0.10.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl";,
 hash = 
"sha256:be85acae8f31c68311505cd96202bad43165cbd7be110c59222f918677e93248", size 
= 24453680, upload-time = "2026-03-19T21:51:11.443Z" },
-    { url = 
"https://files.pythonhosted.org/packages/09/26/b5920b43d7c91e720b72feaf81ea8575fa6188b626607695199fb9a0b683/uv-0.10.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl";,
 hash = 
"sha256:2bb5893d79179727253e4a283871a693d7773c662a534fb897aa65496aa35765", size 
= 23570067, upload-time = "2026-03-19T21:51:13.976Z" },
-    { url = 
"https://files.pythonhosted.org/packages/8d/42/139e68d7d92bb90a33b5e269dbe474acb00b6c9797541032f859c5bf4c4d/uv-0.10.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";,
 hash = 
"sha256:101481a1f48db6becf219914a591a588c0b3bfd05bef90768a5d04972bd6455e", size 
= 23498314, upload-time = "2026-03-19T21:50:36.104Z" },
-    { url = 
"https://files.pythonhosted.org/packages/0c/75/40b237d005e4cdef9f960c215d3e2c0ab4f459ca009c3800cdcb07fbaa1d/uv-0.10.12-py3-none-manylinux_2_28_aarch64.whl";,
 hash = 
"sha256:384b7f36a1ae50efe5f50fe299f276a83bf7acc8b7147517f34e27103270f016", size 
= 22314017, upload-time = "2026-03-19T21:50:56.45Z" },
-    { url = 
"https://files.pythonhosted.org/packages/d0/c3/e65a6d795d5baf6fc113ff764650cc6dd792d745ff23f657e4c302877365/uv-0.10.12-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl";,
 hash = 
"sha256:2c21e1b36c384f75dd3fd4a818b04871158ce115efff0bb4fdcd18ba2df7bd48", size 
= 23321597, upload-time = "2026-03-19T21:50:39.012Z" },
-    { url = 
"https://files.pythonhosted.org/packages/65/ad/00f561b90b0ddfd1d591a78299fdeae68566e9cf82a4913548e4b700afef/uv-0.10.12-py3-none-manylinux_2_31_riscv64.whl";,
 hash = 
"sha256:006812a086fce03d230fc987299f7295c7a73d17a1f1c17de1d1f327826f8481", size 
= 23336447, upload-time = "2026-03-19T21:50:58.764Z" },
-    { url = 
"https://files.pythonhosted.org/packages/f1/6e/ddf50c9ad12cffa99dbb6d1ab920da8ba95e510982cf53df3424e8cbc228/uv-0.10.12-py3-none-musllinux_1_1_i686.whl";,
 hash = 
"sha256:2c5dfc7560453186e911c8c2e4ce95cd1c91e1c5926c3b34c5a825a307217be9", size 
= 22855873, upload-time = "2026-03-19T21:51:01.13Z" },
-    { url = 
"https://files.pythonhosted.org/packages/7a/9a/31a9c2f939849e56039bbe962aef6fb960df68c31bebd834d956876decfc/uv-0.10.12-py3-none-musllinux_1_1_x86_64.whl";,
 hash = 
"sha256:b9ca1d264059cb016c853ebbc4f21c72d983e0f347c927ca29e283aec2f596cf", size 
= 23675276, upload-time = "2026-03-19T21:51:17.262Z" },
-    { url = 
"https://files.pythonhosted.org/packages/81/83/9225e3032f24fcb3b80ff97bbd4c28230de19f0f6b25dbad3ba6efda035e/uv-0.10.12-py3-none-win32.whl";,
 hash = 
"sha256:cca36540d637c80d11d8a44a998a068355f0c78b75ec6b0f152ecbf89dfdd67b", size 
= 21739726, upload-time = "2026-03-19T21:50:46.155Z" },
-    { url = 
"https://files.pythonhosted.org/packages/b5/9c/1954092ce17c00a8c299d39f8121e4c8d60f22a69c103f34d8b8dc68444d/uv-0.10.12-py3-none-win_amd64.whl";,
 hash = 
"sha256:76ebe11572409dfbe20ec25a823f9bc8781400ece5356aa33ec44903af7ec316", size 
= 24219668, upload-time = "2026-03-19T21:51:03.591Z" },
-    { url = 
"https://files.pythonhosted.org/packages/37/92/9ca420deb5a7b6716d8746e1b05eb2c35a305ff3b4aa57061919087d82dd/uv-0.10.12-py3-none-win_arm64.whl";,
 hash = 
"sha256:6727e3a0208059cd4d621684e580d5e254322dacbd806e0d218360abd0d48a68", size 
= 22544602, upload-time = "2026-03-19T21:51:22.678Z" },
+version = "0.11.1"
+source = { registry = "https://pypi.org/simple"; }
+sdist = { url = 
"https://files.pythonhosted.org/packages/2b/e9/691eb77e5e767cdec695db3f91ec259bbb66f9af7c86a8dbe462ef72a120/uv-0.11.1.tar.gz";,
 hash = 
"sha256:8aa7e4983fabb06d0ba58e8b8c969d568ce495ad5f2f0426af97b55720f0dee1", size 
= 4007244, upload-time = "2026-03-24T23:14:18.269Z" }
+wheels = [
+    { url = 
"https://files.pythonhosted.org/packages/16/f9/a95c44fba785c27a966087154a8f6825774d49a38b3c5cd35f80e07ca5ca/uv-0.11.1-py3-none-linux_armv6l.whl";,
 hash = 
"sha256:424b5b412d37838ea6dc11962f037be98b92e83c6ec755509e2af8a4ca3fbf2a", size 
= 23320598, upload-time = "2026-03-24T23:13:44.998Z" },
+    { url = 
"https://files.pythonhosted.org/packages/5d/de/b7e24956a2508debf2addefcad93c72165069370f914d90db6264e0cf96a/uv-0.11.1-py3-none-macosx_10_12_x86_64.whl";,
 hash = 
"sha256:c2133b0532af0217bf252d981bded8bff0c770f174f91f20655f88705f28c03f", size 
= 22832732, upload-time = "2026-03-24T23:13:33.677Z" },
+    { url = 
"https://files.pythonhosted.org/packages/93/bd/1ac91bc704c22a427a44262f09e208ae897817a856d0e8dc0d60e4032e92/uv-0.11.1-py3-none-macosx_11_0_arm64.whl";,
 hash = 
"sha256:1a7b74e5a15b9bc6e61ce807adeca5a2807f557d3f06a5586de1da309d844c1d", size 
= 21406409, upload-time = "2026-03-24T23:14:32.231Z" },
+    { url = 
"https://files.pythonhosted.org/packages/34/1d/f767701e1160538d25ee6c1d49ce1e72442970b6658365afdd57339d10e0/uv-0.11.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl";,
 hash = 
"sha256:fb1f32ec6c7dffb7ae71afaf6bf1defca0bd20a73a25e61226210c0a3e8bb13d", size 
= 23154066, upload-time = "2026-03-24T23:14:07.334Z" },
+    { url = 
"https://files.pythonhosted.org/packages/55/21/d2cfa3571557ba68ffd530656b1d7159fe59a6b01be94595351b1eec1c29/uv-0.11.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl";,
 hash = 
"sha256:0d5cf3c1c96f8afd67072d80479a58c2d69471916bac4ac36cc55f2aa025dc8e", size 
= 22922490, upload-time = "2026-03-24T23:13:25.83Z" },
+    { url = 
"https://files.pythonhosted.org/packages/59/3c/68119f555b2ec152235951cc9aa0f40006c5f03d17c98adaab6a3d36d42b/uv-0.11.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl";,
 hash = 
"sha256:5829a254c64b19420b9e48186182d162b01f8da0130e770cbb8851fd138bb820", size 
= 22923054, upload-time = "2026-03-24T23:14:03.595Z" },
+    { url = 
"https://files.pythonhosted.org/packages/70/ce/0df944835519372b1d698acaa388baa874cf69a6183b5f0980cb8855b81a/uv-0.11.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl";,
 hash = 
"sha256:d4259027e80f4dcc9ae3dceddcd5407173d334484737166fc212e96bb760d6ea", size 
= 24576177, upload-time = "2026-03-24T23:14:25.263Z" },
+    { url = 
"https://files.pythonhosted.org/packages/db/04/0076335413c618fe086e5a4762103634552e638a841e12a4bb8f5137d710/uv-0.11.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl";,
 hash = 
"sha256:b6169eb49d1d2b5df7a7079162e1242e49ad46c6590c55f05b182fa526963763", size 
= 25207026, upload-time = "2026-03-24T23:14:11.579Z" },
+    { url = 
"https://files.pythonhosted.org/packages/bb/57/79c0479e12c2291ad9777be53d813957fa38283975b708eead8e855ba725/uv-0.11.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl";,
 hash = 
"sha256:c96a7310a051b1013efffe082f31d718bce0538d4abc20a716d529bf226b7c44", size 
= 24393748, upload-time = "2026-03-24T23:13:48.553Z" },
+    { url = 
"https://files.pythonhosted.org/packages/c3/25/9ef73c8b6ef04b0cead7d8f1547034568e3e58f3397b55b83167e587f84a/uv-0.11.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";,
 hash = 
"sha256:41ccc438dbb905240a3630265feb25be1bda61656ec7c32682a83648a686f4aa", size 
= 24518525, upload-time = "2026-03-24T23:13:41.129Z" },
+    { url = 
"https://files.pythonhosted.org/packages/a0/a3/035c7c2feb2139efb5d70f2e9f68912c34f7d92ee2429bacd708824483bb/uv-0.11.1-py3-none-manylinux_2_28_aarch64.whl";,
 hash = 
"sha256:44f528ba3d66321cea829770982cccb14af142203e4e19d00ff0c23b28e3cd33", size 
= 23270167, upload-time = "2026-03-24T23:13:51.937Z" },
+    { url = 
"https://files.pythonhosted.org/packages/25/59/2dd782b537bfd1e41cb06de4f4a529fe2f9bd10034fb3fcce225ec86c1a5/uv-0.11.1-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl";,
 hash = 
"sha256:4fcc3d5fdea24181d77e7765bf9d16cdd9803fd524820c62c66f91b2e2644d5b", size 
= 24011976, upload-time = "2026-03-24T23:13:37.402Z" },
+    { url = 
"https://files.pythonhosted.org/packages/7b/f0/9983e6f31d495cc548f1e211cab5b89a3716f406a2d9d8134b8245ec103c/uv-0.11.1-py3-none-manylinux_2_31_riscv64.whl";,
 hash = 
"sha256:5de9e43a32079b8d57093542b0cd8415adba5ed9944fa49076c0927f3ff927e1", size 
= 24029605, upload-time = "2026-03-24T23:14:28.819Z" },
+    { url = 
"https://files.pythonhosted.org/packages/19/dc/9c59e803bfc1b9d6c4c4b7374689c688e9dc0a1ecc2375399d3a59fd4a58/uv-0.11.1-py3-none-musllinux_1_1_i686.whl";,
 hash = 
"sha256:f13ae98a938effae5deb587a63e7e42f05d6ba9c1661903ef538e4e87b204f8c", size 
= 23702811, upload-time = "2026-03-24T23:14:21.207Z" },
+    { url = 
"https://files.pythonhosted.org/packages/7d/77/b1cbfdac0b2dd3e7aa420e9dad1abe8badb47eabd8741a9993586b14f8dc/uv-0.11.1-py3-none-musllinux_1_1_x86_64.whl";,
 hash = 
"sha256:57d38e8b6f6937e1521da568adf846bb89439c73e146e89a8ab2cfe7bb15657a", size 
= 24714239, upload-time = "2026-03-24T23:13:29.814Z" },
+    { url = 
"https://files.pythonhosted.org/packages/e4/d3/94917751acbbb5e053cb366004ae8be3c9664f82aef7de54f55e38ec15cb/uv-0.11.1-py3-none-win32.whl";,
 hash = 
"sha256:36f4552b24acaa4699b02baeb1bb928202bb98d426dcc5041ab7ebae082a6430", size 
= 22404606, upload-time = "2026-03-24T23:13:55.614Z" },
+    { url = 
"https://files.pythonhosted.org/packages/aa/87/8dadfe03944a4a493cd58b6f4f13e5181069a0048aeb2fae7da2c587a542/uv-0.11.1-py3-none-win_amd64.whl";,
 hash = 
"sha256:d6a1c4cdb1064e9ceaa59e89a7489dd196222a0b90cfb77ca37a909b5e024ea0", size 
= 24850092, upload-time = "2026-03-24T23:14:15.186Z" },
+    { url = 
"https://files.pythonhosted.org/packages/38/1b/dad559273df0c8263533afa4a28570cf6804272f379df9830b528a9cf8bc/uv-0.11.1-py3-none-win_arm64.whl";,
 hash = 
"sha256:3bc9632033c7a280342f9b304bd12eccb47d6965d50ea9ee57ecfaf4f1f393c4", size 
= 23376127, upload-time = "2026-03-24T23:13:59.59Z" },
 ]
 
 [[package]]
diff --git a/pyproject.toml b/pyproject.toml
index b356a0e3cd3..467df99d668 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -539,7 +539,7 @@ packages = []
     "apache-airflow-providers-amazon[s3fs]",
 ]
 "uv" = [
-    "uv>=0.10.12",
+    "uv>=0.11.1",
 ]
 
 [project.urls]
diff --git a/scripts/tools/setup_breeze b/scripts/tools/setup_breeze
index c39357d7b51..55df0243b45 100755
--- a/scripts/tools/setup_breeze
+++ b/scripts/tools/setup_breeze
@@ -27,7 +27,7 @@ COLOR_YELLOW=$'\e[33m'
 COLOR_BLUE=$'\e[34m'
 COLOR_RESET=$'\e[0m'
 
-UV_VERSION="0.10.12"
+UV_VERSION="0.11.1"
 
 function manual_instructions() {
     echo
diff --git a/uv.lock b/uv.lock
index b5b474e3f46..0eb3bb23bd6 100644
--- a/uv.lock
+++ b/uv.lock
@@ -12,7 +12,7 @@ resolution-markers = [
 ]
 
 [options]
-exclude-newer = "2026-03-25T06:50:47.97671684Z"
+exclude-newer = "2026-03-25T09:25:36.898664504Z"
 exclude-newer-span = "P4D"
 
 [manifest]
@@ -1551,7 +1551,7 @@ requires-dist = [
     { name = "cloudpickle", marker = "extra == 'cloudpickle'", specifier = 
">=2.2.1" },
     { name = "python-ldap", marker = "extra == 'ldap'", specifier = ">=3.4.4" 
},
     { name = "sentry-sdk", marker = "extra == 'sentry'", specifier = 
">=2.30.0" },
-    { name = "uv", marker = "extra == 'uv'", specifier = ">=0.10.12" },
+    { name = "uv", marker = "extra == 'uv'", specifier = ">=0.11.1" },
 ]
 provides-extras = ["all-core", "async", "graphviz", "gunicorn", "kerberos", 
"memray", "otel", "statsd", "all-task-sdk", "airbyte", "alibaba", "amazon", 
"apache-cassandra", "apache-drill", "apache-druid", "apache-flink", 
"apache-hdfs", "apache-hive", "apache-iceberg", "apache-impala", 
"apache-kafka", "apache-kylin", "apache-livy", "apache-pig", "apache-pinot", 
"apache-spark", "apache-tinkerpop", "apprise", "arangodb", "asana", 
"atlassian-jira", "celery", "cloudant", "cncf-kubernetes", "co [...]
 
@@ -18060,16 +18060,36 @@ dependencies = [
 ]
 sdist = { url = 
"https://files.pythonhosted.org/packages/29/af/356236095959ce28fd17e7987dc76d99396b27c63c5114bdb868863606cf/pyodps-0.12.6.tar.gz";,
 hash = 
"sha256:76e4f12adb05c90f0858e14a1dbb326c79fa190e6e3f948a2fb256aee98391b6", size 
= 1212407, upload-time = "2026-03-25T06:43:55.832Z" }
 wheels = [
+    { url = 
"https://files.pythonhosted.org/packages/76/51/c08e33184653928236c85facbdeb5ef234ef264e2bbff0fd19e927a1fa1b/pyodps-0.12.6-cp310-cp310-macosx_10_9_x86_64.whl";,
 hash = 
"sha256:35fc044ff5fdc2f02eb21746b4077e46aa2b8a8a9307554cce3cd03c5bc87394", size 
= 2235155, upload-time = "2026-03-25T06:53:12.388Z" },
     { url = 
"https://files.pythonhosted.org/packages/83/f3/18e774d5c23d5945dfaefaf5ee9b0be66b061103e02a8594f621ae462d80/pyodps-0.12.6-cp310-cp310-macosx_11_0_arm64.whl";,
 hash = 
"sha256:1527d9fc45be9390f8903cda582916012d1f3044c5110491d3989f020ddd1ec4", size 
= 2196177, upload-time = "2026-03-25T06:31:48.582Z" },
+    { url = 
"https://files.pythonhosted.org/packages/ac/94/c14c3778f601fbec8163c902d19ac3d014823c4fef5559d0c88d32807e6f/pyodps-0.12.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl";,
 hash = 
"sha256:c21149c0fc4d5174ac22b0b0c9e50b923e9d0c9701345a3a29b758f4351520f4", size 
= 5888434, upload-time = "2026-03-25T08:47:08.383Z" },
     { url = 
"https://files.pythonhosted.org/packages/65/c9/0ebded07d91537381571168e73a29765672eda0fecc6338f0cc7b229b0b7/pyodps-0.12.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";,
 hash = 
"sha256:89575de459763650c40db6053435dd7afb83f27c76e346319ab25c11fd52abc9", size 
= 5951634, upload-time = "2026-03-25T06:43:38.57Z" },
+    { url = 
"https://files.pythonhosted.org/packages/a9/d0/48acd5dae31a7b5f9b866acbfc589bfe613e5dea4688b9853f5cfea52a71/pyodps-0.12.6-cp310-cp310-win32.whl";,
 hash = 
"sha256:235b5b51c59daf76b24fed63fcac1eafa33d1540c1561d1b99b652ef83d1ce38", size 
= 2003748, upload-time = "2026-03-25T07:24:55.698Z" },
+    { url = 
"https://files.pythonhosted.org/packages/f7/49/7c73229b5023de8e2166f6ae8e3a04c081f249af992a057588d0b85928a6/pyodps-0.12.6-cp310-cp310-win_amd64.whl";,
 hash = 
"sha256:4d1654255a73d646574bb11ba23be97c1940b4947ecde4556fbc3355c778e584", size 
= 2091111, upload-time = "2026-03-25T07:24:57.951Z" },
+    { url = 
"https://files.pythonhosted.org/packages/47/76/2e627d89a9dd558ce366ab655da680913b33b6592301ca2ecddb2e16adaf/pyodps-0.12.6-cp311-cp311-macosx_10_9_x86_64.whl";,
 hash = 
"sha256:4ab6488a374a60ca7848906d88d2146ef1051e15c529d906820f8870f95cdf18", size 
= 2240361, upload-time = "2026-03-25T06:53:13.646Z" },
     { url = 
"https://files.pythonhosted.org/packages/94/93/3cf5bdf53aa15d56c458cd1e2db570666953d3717e4d75e8ee76e4456a4a/pyodps-0.12.6-cp311-cp311-macosx_11_0_arm64.whl";,
 hash = 
"sha256:d170ef09e66d39ad9cc655a612088b5acf7b7fa91789ef175ae9cbf3f3f2cba3", size 
= 2199959, upload-time = "2026-03-25T06:31:50.522Z" },
+    { url = 
"https://files.pythonhosted.org/packages/95/ca/c166d86e0fecbe056667457355b3dfd8a8ec3829af801855e1f1931dadff/pyodps-0.12.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl";,
 hash = 
"sha256:a17c47a2f51f60ffef628d0c681640ac80c1d3280c49542b4dc0c2c5ebc479e8", size 
= 6403472, upload-time = "2026-03-25T08:47:10.715Z" },
     { url = 
"https://files.pythonhosted.org/packages/4d/36/d9ba16294f74f0e4a4c1d00194701d95e2f81fdfc9d26f0f1cc6b128652c/pyodps-0.12.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";,
 hash = 
"sha256:d9f9f605bc0f70480b6885518c20409f165ea0dbbe68da997c9ccc6a3ff8a83f", size 
= 6458295, upload-time = "2026-03-25T06:43:40.348Z" },
+    { url = 
"https://files.pythonhosted.org/packages/4b/88/63c7685f2787f800608ff1dadd3f45a7de6a058776b51eb4d34aadeff863/pyodps-0.12.6-cp311-cp311-win32.whl";,
 hash = 
"sha256:c6a48e92d3d629986d1526e6eec76fe445f321b598498cc89f877b0e3a792127", size 
= 2002913, upload-time = "2026-03-25T07:24:59.186Z" },
+    { url = 
"https://files.pythonhosted.org/packages/02/de/ae60877229e9597cf4d65e64ca73ee1887aee9d4793cb31005a38eae65e2/pyodps-0.12.6-cp311-cp311-win_amd64.whl";,
 hash = 
"sha256:39ef771c247f13923ceae41cbd4009acc4f4ac30848987ebb5caad642b41cad0", size 
= 2092896, upload-time = "2026-03-25T07:25:00.522Z" },
+    { url = 
"https://files.pythonhosted.org/packages/29/26/837ab7f93b5a7cf1599223e980049c4858e17a557f122b6f540a9bff5ad8/pyodps-0.12.6-cp312-cp312-macosx_10_9_x86_64.whl";,
 hash = 
"sha256:3d6c877769955e15c952b7fc42ec9d47be803be8859063c068f0c087ecd93ab3", size 
= 2238580, upload-time = "2026-03-25T06:53:14.837Z" },
     { url = 
"https://files.pythonhosted.org/packages/02/11/a77e302b88c44759f53937c50b7636df4fc5eef15ede50587a241fa1883e/pyodps-0.12.6-cp312-cp312-macosx_11_0_arm64.whl";,
 hash = 
"sha256:08796112b8d94621e4cc86134f72c1ba9257fcc2261b0153afdd387a28125360", size 
= 2204188, upload-time = "2026-03-25T06:31:51.84Z" },
+    { url = 
"https://files.pythonhosted.org/packages/29/b6/e5fb89640284fdf4cb692dea8d1fe04b015ef20d624e8c95aa9c16db8349/pyodps-0.12.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl";,
 hash = 
"sha256:71b99ee0d6e03dbb07e0a9cad4dfe21064f310ee6e27331a050d0f6d10d0cceb", size 
= 6317357, upload-time = "2026-03-25T08:47:12.616Z" },
     { url = 
"https://files.pythonhosted.org/packages/39/04/8b377f56261e2d2448fce4bd4a12c37d93a6323f38b010003118951c0a61/pyodps-0.12.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";,
 hash = 
"sha256:78054dab648f6f9923061db108d82e9383440961a5983bcaafe9f3515d05db31", size 
= 6422980, upload-time = "2026-03-25T06:43:41.901Z" },
+    { url = 
"https://files.pythonhosted.org/packages/8b/9e/b41cc29da5ad2085a7b36a7c1706014df04a4c619cdc75cb5402536ea2c7/pyodps-0.12.6-cp312-cp312-win32.whl";,
 hash = 
"sha256:d3edbde87ec8814dac7d09ebd2f9e94f2142ba65d3003775801181b02a2408fe", size 
= 1987081, upload-time = "2026-03-25T07:25:02.158Z" },
+    { url = 
"https://files.pythonhosted.org/packages/d2/b6/9cc242069cdc7f36ced285d1027feb370901c8a6bc93550e926ce6dbbc4e/pyodps-0.12.6-cp312-cp312-win_amd64.whl";,
 hash = 
"sha256:ce32e16fb52f0fbea6d9fa81d1c70369de44e779c2183a8c817cc82d22785c95", size 
= 2078225, upload-time = "2026-03-25T07:25:03.761Z" },
+    { url = 
"https://files.pythonhosted.org/packages/2d/63/7cdfdf4b76035aa65b96134bfc5ca515b416b82640b45d7a87adb8f96f1a/pyodps-0.12.6-cp313-cp313-macosx_10_13_x86_64.whl";,
 hash = 
"sha256:b322cacfb1244d4cb450c7b25215c65817461da01505b8fef76d75a59345bf69", size 
= 2221842, upload-time = "2026-03-25T06:53:16.299Z" },
     { url = 
"https://files.pythonhosted.org/packages/bf/bf/3f82cae9c63815ca20d3e6bdd607b573d47de16ee02cd202a28984f64fa9/pyodps-0.12.6-cp313-cp313-macosx_11_0_arm64.whl";,
 hash = 
"sha256:2ee3d31a1db964402fe74af20bd9b4538be8cf5c7d859825472e57e9e83e73bf", size 
= 2189332, upload-time = "2026-03-25T06:31:52.952Z" },
+    { url = 
"https://files.pythonhosted.org/packages/75/13/fdcdae0bbdfcc864a7e0083fe5e45b2c4b5328f6d4907e81b08b85265c56/pyodps-0.12.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl";,
 hash = 
"sha256:06c6fb8eff16e0096876833dfd119afb8cf5612958b75d2d7c24239c50a7d9dc", size 
= 6438732, upload-time = "2026-03-25T08:47:14.104Z" },
     { url = 
"https://files.pythonhosted.org/packages/28/d9/0eeee2abc8bb950a6143df73e42645969037ba059ae94d65f521c05d57ac/pyodps-0.12.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl";,
 hash = 
"sha256:37cbdd9e5f6f2008802268f778fb6de584504201fc5ccdda24055a1f83ecec85", size 
= 6544349, upload-time = "2026-03-25T06:43:43.736Z" },
+    { url = 
"https://files.pythonhosted.org/packages/c9/2a/3908318a967d1655a20239c8c6cb6d98b802481c23158c5305b2a6c698bb/pyodps-0.12.6-cp313-cp313-win32.whl";,
 hash = 
"sha256:d10b93a5860430ebdfa320af04eabe6704cec7bfbac6128ddd2e9fc9b7b39caa", size 
= 1984311, upload-time = "2026-03-25T07:25:05.1Z" },
+    { url = 
"https://files.pythonhosted.org/packages/15/d0/e6b170ae81b714be4d9011c278c5e6e48d0e81c3754fcf73e6cbef4ec9f8/pyodps-0.12.6-cp313-cp313-win_amd64.whl";,
 hash = 
"sha256:96dee3b99ebbd6c9db60726dbb3ee5bebc643100924cc3b19bcc06dfee2add90", size 
= 2074046, upload-time = "2026-03-25T07:25:06.66Z" },
+    { url = 
"https://files.pythonhosted.org/packages/7f/20/a6d57dece767a09b8c596d2e9ddf28ec2076d22e1bbaa22554932b19d0c7/pyodps-0.12.6-cp314-cp314-macosx_10_15_x86_64.whl";,
 hash = 
"sha256:f6e1f91a7fe9fb12fbd07bf8f9b3cee7921c9574875600e8ddf581c3b850fbcf", size 
= 2219369, upload-time = "2026-03-25T06:53:17.826Z" },
     { url = 
"https://files.pythonhosted.org/packages/cf/2e/8c5012713e007d6d98705d34813ffba020809c144d0dd66da755d08098ad/pyodps-0.12.6-cp314-cp314-macosx_11_0_arm64.whl";,
 hash = 
"sha256:87199eed3f7642d3ec1692eda7cb7593df7a1e4c4d15353dae620520a9f07336", size 
= 2191100, upload-time = "2026-03-25T06:31:54.414Z" },
+    { url = 
"https://files.pythonhosted.org/packages/0d/21/5e4da8f365c6a1ef7a7f1f3dc20a383b7e4a3e66a03af3140b5ed00a0846/pyodps-0.12.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl";,
 hash = 
"sha256:361e812d40b51503053bfc6567845ca2156a1466db714a2bd64d04de97031d3d", size 
= 6439277, upload-time = "2026-03-25T08:47:15.825Z" },
     { url = 
"https://files.pythonhosted.org/packages/3e/97/12cba47d971d60c4d7f10bd90feb36ee81cbdebbb3b169e1db793629de99/pyodps-0.12.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl";,
 hash = 
"sha256:d2deafce399b2e2892ba47ff1bb66016900710cefcc33d373f0664560aa1511a", size 
= 6523495, upload-time = "2026-03-25T06:43:45.389Z" },
+    { url = 
"https://files.pythonhosted.org/packages/51/2f/6e35505a6acf186c8e56506b52ce2a31fc205052b81c08e44b3d0013bccd/pyodps-0.12.6-cp314-cp314-win32.whl";,
 hash = 
"sha256:c6d36ec46b02f5fd4e51dd6c439d3e44b6ed7d1902eec97b00b86db50ea89a70", size 
= 2001294, upload-time = "2026-03-25T07:25:08.043Z" },
+    { url = 
"https://files.pythonhosted.org/packages/c7/01/4faefd007d5af1a12ad9fa7eb0d204b12729bc632b47e5208b57824a4331/pyodps-0.12.6-cp314-cp314-win_amd64.whl";,
 hash = 
"sha256:c25367feeca78bde00f7ce0f3a9754ebb5bb89d4a8b3f1770eecd201b9dde8a4", size 
= 2094068, upload-time = "2026-03-25T07:25:09.286Z" },
 ]
 
 [[package]]
@@ -19814,9 +19834,9 @@ name = "secretstorage"
 version = "3.5.0"
 source = { registry = "https://pypi.org/simple"; }
 dependencies = [
-    { name = "cryptography", version = "44.0.3", source = { registry = 
"https://pypi.org/simple"; }, marker = "python_full_version >= '3.12'" },
+    { name = "cryptography", version = "44.0.3", source = { registry = 
"https://pypi.org/simple"; }, marker = "(python_full_version >= '3.12' and 
python_full_version < '3.14' and sys_platform == 'emscripten') or 
(python_full_version >= '3.12' and python_full_version < '3.14' and 
sys_platform == 'win32') or (python_full_version >= '3.12' and sys_platform != 
'emscripten' and sys_platform != 'win32')" },
     { name = "cryptography", version = "46.0.5", source = { registry = 
"https://pypi.org/simple"; }, marker = "python_full_version < '3.12'" },
-    { name = "jeepney" },
+    { name = "jeepney", marker = "(python_full_version < '3.14' and 
sys_platform == 'emscripten') or (python_full_version < '3.14' and sys_platform 
== 'win32') or (sys_platform != 'emscripten' and sys_platform != 'win32')" },
 ]
 sdist = { url = 
"https://files.pythonhosted.org/packages/1c/03/e834bcd866f2f8a49a85eaff47340affa3bfa391ee9912a952a1faa68c7b/secretstorage-3.5.0.tar.gz";,
 hash = 
"sha256:f04b8e4689cbce351744d5537bf6b1329c6fc68f91fa666f60a380edddcd11be", size 
= 19884, upload-time = "2025-11-23T19:02:53.191Z" }
 wheels = [


Reply via email to