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

potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new c776d74da10 [v3-0-test] Bump ``uv`` to ``0.7.16`` (#52372) (#52405)
c776d74da10 is described below

commit c776d74da1067b2061949d2950862e08071fb21d
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Jun 28 13:11:52 2025 +0200

    [v3-0-test] Bump ``uv`` to ``0.7.16`` (#52372) (#52405)
    
    `0.7.16` was just released.
    (cherry picked from commit 713ddaa6de890908b29e736f1239a7a822e8d26b)
    
    Co-authored-by: Kaxil Naik <[email protected]>
---
 .github/actions/install-pre-commit/action.yml                         | 2 +-
 .github/workflows/ci-amd.yml                                          | 2 +-
 Dockerfile                                                            | 2 +-
 Dockerfile.ci                                                         | 2 +-
 dev/breeze/doc/ci/02_images.md                                        | 2 +-
 dev/breeze/doc/images/output_run.svg                                  | 4 ++--
 dev/breeze/doc/images/output_run.txt                                  | 2 +-
 dev/breeze/src/airflow_breeze/commands/release_management_commands.py | 2 +-
 dev/breeze/src/airflow_breeze/global_constants.py                     | 2 +-
 pyproject.toml                                                        | 4 ++--
 scripts/ci/install_breeze.sh                                          | 2 +-
 scripts/tools/setup_breeze                                            | 2 +-
 12 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/.github/actions/install-pre-commit/action.yml 
b/.github/actions/install-pre-commit/action.yml
index e053e8e9057..9f4b091fddc 100644
--- a/.github/actions/install-pre-commit/action.yml
+++ b/.github/actions/install-pre-commit/action.yml
@@ -24,7 +24,7 @@ inputs:
     default: "3.9"
   uv-version:
     description: 'uv version to use'
-    default: "0.7.14"  # Keep this comment to allow automatic replacement of 
uv version
+    default: "0.7.16"  # Keep this comment to allow automatic replacement of 
uv version
   pre-commit-version:
     description: 'pre-commit version to use'
     default: "4.2.0"  # Keep this comment to allow automatic replacement of 
pre-commit version
diff --git a/.github/workflows/ci-amd.yml b/.github/workflows/ci-amd.yml
index 6010123c994..e1e12ab5df0 100644
--- a/.github/workflows/ci-amd.yml
+++ b/.github/workflows/ci-amd.yml
@@ -186,7 +186,7 @@ jobs:
       - name: Install pre-commit, uv, and pre-commit-uv
         shell: bash
         env:
-          UV_VERSION: "0.7.14"  # Keep this comment to allow automatic 
replacement of uv version
+          UV_VERSION: "0.7.16"  # Keep this comment to allow automatic 
replacement of uv version
           PRE_COMMIT_VERSION: "4.2.0"  # Keep this comment to allow automatic 
replacement of pre-commit version
           PRE_COMMIT_UV_VERSION: "4.1.4"  # Keep this comment to allow 
automatic replacement of pre-commit-uv version
         run: |
diff --git a/Dockerfile b/Dockerfile
index fbd99bc8679..77a8d681a08 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -57,7 +57,7 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
 ARG AIRFLOW_PIP_VERSION=25.1.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
 ARG AIRFLOW_SETUPTOOLS_VERSION=80.9.0
-ARG AIRFLOW_UV_VERSION=0.7.14
+ARG AIRFLOW_UV_VERSION=0.7.16
 ARG AIRFLOW_USE_UV="false"
 ARG UV_HTTP_TIMEOUT="300"
 ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow";
diff --git a/Dockerfile.ci b/Dockerfile.ci
index beebd98f788..017ec20ed33 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1389,7 +1389,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh 
install_additional_depe
 ARG AIRFLOW_PIP_VERSION=25.1.1
 # ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main";
 ARG AIRFLOW_SETUPTOOLS_VERSION=80.9.0
-ARG AIRFLOW_UV_VERSION=0.7.14
+ARG AIRFLOW_UV_VERSION=0.7.16
 # TODO(potiuk): automate with upgrade check (possibly)
 ARG AIRFLOW_PRE_COMMIT_VERSION="4.2.0"
 ARG AIRFLOW_PRE_COMMIT_UV_VERSION="4.1.4"
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index 52fa5cacf83..00007ded26e 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`             | `25.1.1`                   | `pip` 
version used.                                                                   
                            |
-| `AIRFLOW_UV_VERSION`              | `0.7.14`                   | `uv` 
version used.                                                                   
                             |
+| `AIRFLOW_UV_VERSION`              | `0.7.16`                   | `uv` 
version used.                                                                   
                             |
 | `AIRFLOW_PRE_COMMIT_VERSION`      | `4.2.0`                    | 
`pre-commit` version used.                                                      
                                  |
 | `AIRFLOW_PRE_COMMIT_UV_VERSION`   | `4.1.4`                    | 
`pre-commit-uv` version used.                                                   
                                  |
 | `AIRFLOW_USE_UV`                  | `true`                     | Whether to 
use UV for installation.                                                        
                       |
diff --git a/dev/breeze/doc/images/output_run.svg 
b/dev/breeze/doc/images/output_run.svg
index b672a174b29..8e7da71af39 100644
--- a/dev/breeze/doc/images/output_run.svg
+++ b/dev/breeze/doc/images/output_run.svg
@@ -195,8 +195,8 @@
 </text><text class="breeze-run-r1" x="12.2" y="93.2" textLength="963.8" 
clip-path="url(#breeze-run-line-3)">Run&#160;a&#160;command&#160;in&#160;the&#160;Breeze&#160;environment&#160;without&#160;entering&#160;the&#160;interactive&#160;shell.</text><text
 class="breeze-run-r1" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#breeze-run-line-3)">
 </text><text class="breeze-run-r1" x="1464" y="117.6" textLength="12.2" 
clip-path="url(#breeze-run-line-4)">
 </text><text class="breeze-run-r5" x="0" y="142" textLength="24.4" 
clip-path="url(#breeze-run-line-5)">╭─</text><text class="breeze-run-r5" 
x="24.4" y="142" textLength="231.8" 
clip-path="url(#breeze-run-line-5)">&#160;Command&#160;execution&#160;</text><text
 class="breeze-run-r5" x="256.2" y="142" textLength="1183.4" 
clip-path="url(#breeze-run-line-5)">─────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="breeze-run-r5" x="14 [...]
-</text><text class="breeze-run-r5" x="0" y="166.4" textLength="12.2" 
clip-path="url(#breeze-run-line-6)">│</text><text class="breeze-run-r4" 
x="24.4" y="166.4" textLength="97.6" 
clip-path="url(#breeze-run-line-6)">--python</text><text class="breeze-run-r6" 
x="268.4" y="166.4" textLength="24.4" 
clip-path="url(#breeze-run-line-6)">-p</text><text class="breeze-run-r1" 
x="317.2" y="166.4" textLength="732" 
clip-path="url(#breeze-run-line-6)">Python&#160;major/minor&#160;version&#160;used&#160
 [...]
-</text><text class="breeze-run-r5" x="0" y="190.8" textLength="12.2" 
clip-path="url(#breeze-run-line-7)">│</text><text class="breeze-run-r5" 
x="317.2" y="190.8" textLength="732" 
clip-path="url(#breeze-run-line-7)">[default:&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
+</text><text class="breeze-run-r5" x="0" y="166.4" textLength="12.2" 
clip-path="url(#breeze-run-line-6)">│</text><text class="breeze-run-r4" 
x="24.4" y="166.4" textLength="97.6" 
clip-path="url(#breeze-run-line-6)">--python</text><text class="breeze-run-r6" 
x="268.4" y="166.4" textLength="24.4" 
clip-path="url(#breeze-run-line-6)">-p</text><text class="breeze-run-r1" 
x="317.2" y="166.4" textLength="732" 
clip-path="url(#breeze-run-line-6)">Python&#160;major/minor&#160;version&#160;used&#160
 [...]
+</text><text class="breeze-run-r5" x="0" y="190.8" textLength="12.2" 
clip-path="url(#breeze-run-line-7)">│</text><text class="breeze-run-r5" 
x="317.2" y="190.8" textLength="732" 
clip-path="url(#breeze-run-line-7)">[default:&#160;3.9]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
 </text><text class="breeze-run-r5" x="0" y="215.2" textLength="12.2" 
clip-path="url(#breeze-run-line-8)">│</text><text class="breeze-run-r4" 
x="24.4" y="215.2" textLength="109.8" 
clip-path="url(#breeze-run-line-8)">--backend</text><text class="breeze-run-r6" 
x="268.4" y="215.2" textLength="24.4" 
clip-path="url(#breeze-run-line-8)">-b</text><text class="breeze-run-r1" 
x="317.2" y="215.2" textLength="1122.4" 
clip-path="url(#breeze-run-line-8)">Database&#160;backend&#160;to&#160;use.&#160;I
 [...]
 </text><text class="breeze-run-r5" x="0" y="239.6" textLength="12.2" 
clip-path="url(#breeze-run-line-9)">│</text><text class="breeze-run-r1" 
x="317.2" y="239.6" textLength="1122.4" 
clip-path="url(#breeze-run-line-9)">configuration,&#160;meaning&#160;there&#160;will&#160;be&#160;no&#160;database&#160;available,&#160;and&#160;any&#160;attempts&#160;to&#160;connect&#160;to&#160;&#160;</text><text
 class="breeze-run-r5" x="1451.8" y="239.6" textLength="12.2" 
clip-path="url(#breeze-run-line-9) [...]
 </text><text class="breeze-run-r5" x="0" y="264" textLength="12.2" 
clip-path="url(#breeze-run-line-10)">│</text><text class="breeze-run-r1" 
x="317.2" y="264" textLength="1122.4" 
clip-path="url(#breeze-run-line-10)">the&#160;Airflow&#160;database&#160;will&#160;fail.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
diff --git a/dev/breeze/doc/images/output_run.txt 
b/dev/breeze/doc/images/output_run.txt
index 53c445f3e15..2c98fd3c100 100644
--- a/dev/breeze/doc/images/output_run.txt
+++ b/dev/breeze/doc/images/output_run.txt
@@ -1 +1 @@
-820a829e6ae777a8625862d010f8e693
+d7a9f3a14b884f18599a186f129f976f
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 603ec7a59ff..cad99a3b271 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -241,7 +241,7 @@ class VersionedFile(NamedTuple):
 
 
 AIRFLOW_PIP_VERSION = "25.1.1"
-AIRFLOW_UV_VERSION = "0.7.14"
+AIRFLOW_UV_VERSION = "0.7.16"
 AIRFLOW_USE_UV = False
 # TODO(potiuk): automate upgrades of these versions (likely via 
requirements.txt file)
 GITPYTHON_VERSION = "3.1.44"
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index a81d7cae2e2..e1536bdc873 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -194,7 +194,7 @@ if MYSQL_INNOVATION_RELEASE:
 ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb", "mysql"]
 
 PIP_VERSION = "25.1.1"
-UV_VERSION = "0.7.14"
+UV_VERSION = "0.7.16"
 
 DEFAULT_UV_HTTP_TIMEOUT = 300
 DEFAULT_WSL2_HTTP_TIMEOUT = 900
diff --git a/pyproject.toml b/pyproject.toml
index 50c98e6204b..9fcc74168c3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -25,7 +25,7 @@ requires = [
     "pluggy==1.5.0",
     "smmap==5.0.2",
     "tomli==2.2.1; python_version < '3.11'",
-    "trove-classifiers==2025.4.11.15",
+    "trove-classifiers==2025.5.9.12",
 ]
 build-backend = "hatchling.build"
 
@@ -518,7 +518,7 @@ packages = []
     "apache-airflow-providers-amazon[s3fs]",
 ]
 "uv" = [
-    "uv>=0.7.8",
+    "uv>=0.7.16",
 ]
 
 
diff --git a/scripts/ci/install_breeze.sh b/scripts/ci/install_breeze.sh
index d2ef488d1cc..1743f549be8 100755
--- a/scripts/ci/install_breeze.sh
+++ b/scripts/ci/install_breeze.sh
@@ -22,7 +22,7 @@ cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
 PYTHON_ARG=""
 
 PIP_VERSION="25.1.1"
-UV_VERSION="0.7.14"
+UV_VERSION="0.7.16"
 if [[ ${PYTHON_VERSION=} != "" ]]; then
     PYTHON_ARG="--python=$(which python"${PYTHON_VERSION}") "
 fi
diff --git a/scripts/tools/setup_breeze b/scripts/tools/setup_breeze
index a7358f2a331..bb795c46723 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.7.8"
+UV_VERSION="0.7.16"
 
 function manual_instructions() {
     echo

Reply via email to