-
Couldn't load subscription status.
- Fork 6.6k
chore(deps): update dependency pyarrow to v22 #13618
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==22.0.0; python_version <= '3.8' | ||
| pyarrow==22.0.0; python_version > '3.9' | ||
|
Comment on lines
+8
to
+9
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. These two lines can be simplified. Since they both pin |
||
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.
These two lines can be simplified. Since they both pin
pyarrowto version22.0.0, they can be combined into a single line. Also, the current version markers (python_version <= '3.8'andpython_version > '3.9') create a gap wherepyarrowwould not be installed for Python 3.9. This is likely unintentional. Other dependencies in this file and related files usepython_version > '3.8'. By combining these lines, you can simplify the file and resolve the potential issue for Python 3.9.