-
Notifications
You must be signed in to change notification settings - Fork 6.7k
chore(deps): update dependency pyarrow to v24 #14095
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,5 +5,5 @@ pandas==2.2.3; python_version > '3.8' | |
| pandas-gbq==0.24.0 | ||
| grpcio==1.70.0; python_version == '3.8' | ||
| grpcio==1.74.0; python_version > '3.8' | ||
| pyarrow==17.0.0; python_version <= '3.8' | ||
| pyarrow==20.0.0; python_version > '3.9' | ||
| pyarrow==24.0.0; python_version <= '3.8' | ||
| pyarrow==24.0.0; python_version > '3.9' | ||
|
Comment on lines
+8
to
+9
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pyarrowversion 24.0.0 does not support Python 3.8 (support for Python 3.8 was dropped in version 17.0.0/18.0.0). Pinning this version for Python 3.8 will cause installation failures. Additionally, the environment marker> '3.9'creates a gap wherepyarrowis not installed for Python 3.9. It is recommended to keep the previous version for Python 3.8 and use>= '3.9'for the updated version to ensure compatibility and full coverage across Python versions.