This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new f8f7c9e198 [#9919] fix(CI): Fix python CI pipeline fails due to runner
image upgrade. (#9918)
f8f7c9e198 is described below
commit f8f7c9e198a4823dc799d277ed73c5711b5d79a3
Author: Qi Yu <[email protected]>
AuthorDate: Mon Feb 9 22:09:11 2026 +0800
[#9919] fix(CI): Fix python CI pipeline fails due to runner image upgrade.
(#9918)
### What changes were proposed in this pull request?
This pull request adds a new dependency to the Python client's
development requirements.
Dependency updates:
* Added the `banks` package with a version constraint of less than 2.4.0
to the `requirements-dev.txt` file.
### Why are the changes needed?
It's a bug.
Fix: #9919
### Does this PR introduce _any_ user-facing change?
N/A.
### How was this patch tested?
Run CI
---
clients/client-python/requirements-dev.txt | 3 +++
1 file changed, 3 insertions(+)
diff --git a/clients/client-python/requirements-dev.txt
b/clients/client-python/requirements-dev.txt
index a39836b3f4..e92ebbbc07 100644
--- a/clients/client-python/requirements-dev.txt
+++ b/clients/client-python/requirements-dev.txt
@@ -32,3 +32,6 @@ pyjwt[crypto]==2.10.1
jwcrypto==1.5.6
sphinx==7.1.2
furo==2024.8.6
+# banks 2.4.0 does not support python 3.9.* or lower, so we limit the version
here. We can also
+# consider upgrading the python version to 3.10.x or higher in the future to
avoid this issue.
+banks==2.3.0