-
Notifications
You must be signed in to change notification settings - Fork 2.8k
chore(deps): bump the all-dependencies group across 1 directory with 10 updates #2325
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 |
|---|---|---|
|
|
@@ -6,16 +6,16 @@ readme = "README.md" | |
| requires-python = ">=3.11,<3.14" | ||
| dependencies = [ | ||
| "backoff>=2.2.0", | ||
| "bigframes>=2.0.0", | ||
| "docker>=7.0.0", | ||
| "google-cloud-aiplatform>=1.80.0", | ||
| "google-cloud-bigquery>=3.0.0", | ||
| "google-cloud-pipeline-components>=2.19.0", | ||
| "google-cloud-vectorsearch>=0.4.0", | ||
| "kfp>=1.4.0", | ||
| "langchain-text-splitters>=0.3.0", | ||
| "markdownify>=0.14.0", | ||
| "pandas<3", | ||
| "bigframes>=2.46.0", | ||
| "docker>=7.2.0", | ||
| "google-cloud-aiplatform>=1.163.0", | ||
| "google-cloud-bigquery>=3.42.2", | ||
| "google-cloud-pipeline-components>=2.22.0", | ||
| "google-cloud-vectorsearch>=0.11.1", | ||
| "kfp>=2.17.0", | ||
| "langchain-text-splitters>=1.1.2", | ||
| "markdownify>=1.2.3", | ||
| "pandas<4", | ||
|
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. Upgrading pandas to <4 resolves to pandas 3.x, which is incompatible with swifter 1.4.0 and will cause runtime errors in process_data due to removed deprecated features in pandas 3.0. Please keep pandas pinned to <3 or update swifter to a version that supports pandas 3.0.
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. Bumping this to pandas<4 causes an environment mismatch with the @component decorators in process_data.py and ingest_data.py, which are hardcoded to pandas<3. We should align the decorator requirements with this pyproject.toml update to prevent runtime discrepancies on Vertex AI. |
||
| "swifter>=1.4.0", | ||
| ] | ||
|
|
||
|
|
||
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.
Bumping pandas to <4 allows pandas 3.x, which is incompatible with swifter 1.4.0 and will cause runtime AttributeError or ImportError when process_data.py attempts to import and use swifter. Please revert to pandas<3 to ensure compatibility.