This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 6b1b92c539 [python] Relax overly strict dependency pins in
paimon-python requirements (#6893)
6b1b92c539 is described below
commit 6b1b92c539eb9e7ccb1b4c0489fa2af5b79f0c41
Author: userzhy <[email protected]>
AuthorDate: Thu Dec 25 16:04:13 2025 +0800
[python] Relax overly strict dependency pins in paimon-python requirements
(#6893)
---
paimon-python/dev/requirements.txt | 52 +++++++++++++++++++-------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/paimon-python/dev/requirements.txt
b/paimon-python/dev/requirements.txt
index 40025a308f..703adec8e8 100644
--- a/paimon-python/dev/requirements.txt
+++ b/paimon-python/dev/requirements.txt
@@ -16,30 +16,30 @@
# limitations under the License.
################################################################################
# Core dependencies for pypaimon
-cachetools==4.2.4; python_version=="3.6"
-cachetools==5.3.3; python_version>"3.6"
-dataclasses==0.8.0; python_version < "3.7"
-fastavro==1.4.7; python_version<"3.9"
-fastavro==1.11.1; python_version>="3.9"
-fsspec==2021.10.1; python_version<"3.8"
-fsspec==2024.3.1; python_version>="3.8"
-ossfs==2021.8.0; python_version<"3.8"
-ossfs==2023.12.0; python_version>="3.8"
-packaging==21.3.0; python_version<"3.8"
-packaging==25.0; python_version>="3.8"
-pandas==1.1.5; python_version < "3.7"
-pandas==1.3.5; python_version >= "3.7" and python_version < "3.9"
-pandas==2.3.2; python_version >= "3.9"
-polars==0.9.12; python_version<"3.8"
-polars==1.8.0; python_version=="3.8"
-polars==1.32.0; python_version>"3.8"
-pyarrow==6.0.1; python_version < "3.8"
-pyarrow>=16,<19; python_version >= "3.8" and python_version < "3.13"
-pyarrow>=16,<19; python_version >= "3.13"
+cachetools>=4.2,<6; python_version=="3.6"
+cachetools>=5,<6; python_version>"3.6"
+dataclasses>=0.8; python_version < "3.7"
+fastavro>=1.4,<2; python_version<"3.9"
+fastavro>=1.4,<2; python_version>="3.9"
+fsspec>=2021.10,<2026; python_version<"3.8"
+fsspec>=2023,<2026; python_version>="3.8"
+ossfs>=2021.8; python_version<"3.8"
+ossfs>=2023; python_version>="3.8"
+packaging>=21,<26; python_version<"3.8"
+packaging>=21,<26; python_version>="3.8"
+pandas>=1.1,<2; python_version < "3.7"
+pandas>=1.3,<3; python_version >= "3.7" and python_version < "3.9"
+pandas>=1.5,<3; python_version >= "3.9"
+polars>=0.9,<1; python_version<"3.8"
+polars>=1,<2; python_version=="3.8"
+polars>=1,<2; python_version>"3.8"
+pyarrow>=6,<7; python_version < "3.8"
+pyarrow>=16,<20; python_version >= "3.8" and python_version < "3.13"
+pyarrow>=16,<20; python_version >= "3.13"
pyroaring
-ray==2.48.0
-readerwriterlock==1.0.9
-zstandard==0.19.0; python_version<"3.9"
-zstandard==0.24.0; python_version>="3.9"
-pylance>=0.35,<0.40; python_version>="3.9"
-pylance==0.10.18; python_version>="3.8" and python_version<"3.9"
+ray>=2.10,<3
+readerwriterlock>=1,<2
+zstandard>=0.19,<1; python_version<"3.9"
+zstandard>=0.19,<1; python_version>="3.9"
+pylance>=0.20,<1; python_version>="3.9"
+pylance>=0.10,<1; python_version>="3.8" and python_version<"3.9"