Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ dependencies = [
"chardet",
"click",
"pyarrow>=20,<21; python_version < '3.14' and platform_system == 'Linux'", # Linux needs manylinux2014 wheels on CPython 3.9-3.13
"pyarrow>=20; python_version < '3.14' and platform_system != 'Linux'", # Non-Linux platforms may use newer pyarrow binaries
"pyarrow>=22; python_version >= '3.14'", # 22.x provides cp314 wheels on manylinux_2_28/macOS/Windows
"pyarrow>=20,<23; python_version < '3.14' and platform_system != 'Linux'", # pyarrow 23 removed match_substring_regex (pandas compat)
"pyarrow>=22,<23; python_version >= '3.14'", # 22.x provides cp314 wheels; 23 breaks pandas str ops

# Scientific packages
"atmosp",
Expand Down
Loading