Skip to content

Commit 6b1b92c

Browse files
authored
[python] Relax overly strict dependency pins in paimon-python requirements (#6893)
1 parent f45c6f2 commit 6b1b92c

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

paimon-python/dev/requirements.txt

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,30 @@
1616
# limitations under the License.
1717
################################################################################
1818
# Core dependencies for pypaimon
19-
cachetools==4.2.4; python_version=="3.6"
20-
cachetools==5.3.3; python_version>"3.6"
21-
dataclasses==0.8.0; python_version < "3.7"
22-
fastavro==1.4.7; python_version<"3.9"
23-
fastavro==1.11.1; python_version>="3.9"
24-
fsspec==2021.10.1; python_version<"3.8"
25-
fsspec==2024.3.1; python_version>="3.8"
26-
ossfs==2021.8.0; python_version<"3.8"
27-
ossfs==2023.12.0; python_version>="3.8"
28-
packaging==21.3.0; python_version<"3.8"
29-
packaging==25.0; python_version>="3.8"
30-
pandas==1.1.5; python_version < "3.7"
31-
pandas==1.3.5; python_version >= "3.7" and python_version < "3.9"
32-
pandas==2.3.2; python_version >= "3.9"
33-
polars==0.9.12; python_version<"3.8"
34-
polars==1.8.0; python_version=="3.8"
35-
polars==1.32.0; python_version>"3.8"
36-
pyarrow==6.0.1; python_version < "3.8"
37-
pyarrow>=16,<19; python_version >= "3.8" and python_version < "3.13"
38-
pyarrow>=16,<19; python_version >= "3.13"
19+
cachetools>=4.2,<6; python_version=="3.6"
20+
cachetools>=5,<6; python_version>"3.6"
21+
dataclasses>=0.8; python_version < "3.7"
22+
fastavro>=1.4,<2; python_version<"3.9"
23+
fastavro>=1.4,<2; python_version>="3.9"
24+
fsspec>=2021.10,<2026; python_version<"3.8"
25+
fsspec>=2023,<2026; python_version>="3.8"
26+
ossfs>=2021.8; python_version<"3.8"
27+
ossfs>=2023; python_version>="3.8"
28+
packaging>=21,<26; python_version<"3.8"
29+
packaging>=21,<26; python_version>="3.8"
30+
pandas>=1.1,<2; python_version < "3.7"
31+
pandas>=1.3,<3; python_version >= "3.7" and python_version < "3.9"
32+
pandas>=1.5,<3; python_version >= "3.9"
33+
polars>=0.9,<1; python_version<"3.8"
34+
polars>=1,<2; python_version=="3.8"
35+
polars>=1,<2; python_version>"3.8"
36+
pyarrow>=6,<7; python_version < "3.8"
37+
pyarrow>=16,<20; python_version >= "3.8" and python_version < "3.13"
38+
pyarrow>=16,<20; python_version >= "3.13"
3939
pyroaring
40-
ray==2.48.0
41-
readerwriterlock==1.0.9
42-
zstandard==0.19.0; python_version<"3.9"
43-
zstandard==0.24.0; python_version>="3.9"
44-
pylance>=0.35,<0.40; python_version>="3.9"
45-
pylance==0.10.18; python_version>="3.8" and python_version<"3.9"
40+
ray>=2.10,<3
41+
readerwriterlock>=1,<2
42+
zstandard>=0.19,<1; python_version<"3.9"
43+
zstandard>=0.19,<1; python_version>="3.9"
44+
pylance>=0.20,<1; python_version>="3.9"
45+
pylance>=0.10,<1; python_version>="3.8" and python_version<"3.9"

0 commit comments

Comments
 (0)