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

mchades pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new 88123d9d55 [Cherry-pick to branch-1.3] [MINOR] Fix Python formatting 
in client and matrix script (#11444) (#11447)
88123d9d55 is described below

commit 88123d9d55b33a033ea9c31c69e4b9a453677674
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 5 15:58:01 2026 +0800

    [Cherry-pick to branch-1.3] [MINOR] Fix Python formatting in client and 
matrix script (#11444) (#11447)
    
    **Cherry-pick Information:**
    - Original commit: aca4b45fcc3f7ca89b2d6ea00b6a0c272eb5df2d
    - Target branch: `branch-1.3`
    - Status: ✅ Clean cherry-pick (no conflicts)
    
    Co-authored-by: Jerry Shao <[email protected]>
---
 clients/client-python/gravitino/client/gravitino_metalake.py | 1 -
 clients/client-python/scripts/run_lance_ray_matrix.py        | 8 ++++++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/clients/client-python/gravitino/client/gravitino_metalake.py 
b/clients/client-python/gravitino/client/gravitino_metalake.py
index 75394a1208..beb4baf96a 100644
--- a/clients/client-python/gravitino/client/gravitino_metalake.py
+++ b/clients/client-python/gravitino/client/gravitino_metalake.py
@@ -14,7 +14,6 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-
 # pylint: disable=too-many-lines
 import logging
 from typing import Dict, List, Optional
diff --git a/clients/client-python/scripts/run_lance_ray_matrix.py 
b/clients/client-python/scripts/run_lance_ray_matrix.py
index 3a0fc94842..f2daecb59e 100644
--- a/clients/client-python/scripts/run_lance_ray_matrix.py
+++ b/clients/client-python/scripts/run_lance_ray_matrix.py
@@ -146,7 +146,9 @@ def ensure_venv(python: str, venv_dir: Path) -> Path:
     return venv_python
 
 
-def _deps_sentinel(venv_dir: Path, version: str, ray_spec: str, 
lance_namespace_spec: str) -> Path:
+def _deps_sentinel(
+    venv_dir: Path, version: str, ray_spec: str, lance_namespace_spec: str
+) -> Path:
     """Return the path to the sentinel file that marks a fully-installed venv.
 
     The sentinel encodes all dep specs so any change in pinned versions forces
@@ -171,7 +173,9 @@ def install_deps(
     """
     sentinel = _deps_sentinel(venv_dir, version, ray_spec, 
lance_namespace_spec)
     if sentinel.exists():
-        print(f"[matrix] venv for lance-ray=={version} already populated, 
skipping pip install")
+        print(
+            f"[matrix] venv for lance-ray=={version} already populated, 
skipping pip install"
+        )
         return
 
     rc = run(

Reply via email to