-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Update dependency pyarrow to v23 [SECURITY] #14398
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==23.0.1; python_version <= '3.8' | ||
| pyarrow==23.0.1; 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. Python versions below 3.10 are no longer supported in this repository. Please do not specify fallback dependency versions or environment markers for Python versions older than 3.10. Since pyarrow 23.0.1 is compatible with Python 3.10+, we can simplify this requirement by removing the environment markers. References
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ google-cloud-bigquery===3.30.0; python_version <= '3.8' | |
| google-cloud-bigquery==3.35.1; python_version >= '3.9' | ||
| pyarrow===12.0.1; python_version == '3.7' | ||
| pyarrow===17.0.0; python_version == '3.8' | ||
| pyarrow==21.0.0; python_version >= '3.9' | ||
| pyarrow==23.0.1; python_version >= '3.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. Python versions below 3.10 are no longer supported in this repository. Please do not specify fallback dependency versions or environment markers for Python versions older than 3.10. Since pyarrow 23.0.1 is compatible with Python 3.10+, we can simplify this requirement by removing the environment markers. References
|
||
| ipython===7.31.1; python_version == '3.7' | ||
| ipython===8.10.0; python_version == '3.8' | ||
| ipython===8.18.1; python_version == '3.9' | ||
|
|
||
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.
Python versions below 3.10 are no longer supported in this repository. Please do not specify fallback dependency versions or environment markers for Python versions older than 3.10. Since pyarrow 23.0.1 is compatible with Python 3.10+, we can simplify this requirement by removing the environment markers.
References