This is an automated email from the ASF dual-hosted git repository. yzheng pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push: new 067bb9dc4 client/python: loosen boto3 dep (#2188) 067bb9dc4 is described below commit 067bb9dc4992baa5f5dd023ffa9127f10f54f4f9 Author: Tyler Rockwood <rockw...@gmail.com> AuthorDate: Mon Aug 11 13:10:25 2025 -0500 client/python: loosen boto3 dep (#2188) It's hard to depend on this package when the boto3 dependency is so strict. --- client/python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/python/pyproject.toml b/client/python/pyproject.toml index a4f2d0b4d..e087a5a37 100644 --- a/client/python/pyproject.toml +++ b/client/python/pyproject.toml @@ -34,7 +34,7 @@ dependencies = [ "python-dateutil>=2.8.2", "pydantic>=2.0.0", "typing-extensions>=4.7.1", - "boto3==1.40.6", + "boto3~=1.40.6", ] [project.urls]