-
Notifications
You must be signed in to change notification settings - Fork 159
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
Add pandas
extra for google-cloud-bigquery
to pick up missing pyarrow
#1153
Conversation
Integration tests were skipped, I think because the changed file (setup.py) did not trigger the run. We need to fix that, but for now they are running here: https://github.com/dbt-labs/dbt-bigquery/actions/runs/8460917158. |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.6.latest 1.6.latest
# Navigate to the new working tree
cd .worktrees/backport-1.6.latest
# Create a new branch
git switch --create backport-1153-to-1.6.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 978a1aea7d18af79d6d78d0ab5e8d058c4b7c93c
# Push it to GitHub
git push --set-upstream origin backport-1153-to-1.6.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.6.latest Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.5.latest 1.5.latest
# Navigate to the new working tree
cd .worktrees/backport-1.5.latest
# Create a new branch
git switch --create backport-1153-to-1.5.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 978a1aea7d18af79d6d78d0ab5e8d058c4b7c93c
# Push it to GitHub
git push --set-upstream origin backport-1153-to-1.5.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.5.latest Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.4.latest 1.4.latest
# Navigate to the new working tree
cd .worktrees/backport-1.4.latest
# Create a new branch
git switch --create backport-1153-to-1.4.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 978a1aea7d18af79d6d78d0ab5e8d058c4b7c93c
# Push it to GitHub
git push --set-upstream origin backport-1153-to-1.4.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.4.latest Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.7.latest 1.7.latest
# Navigate to the new working tree
cd .worktrees/backport-1.7.latest
# Create a new branch
git switch --create backport-1153-to-1.7.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 978a1aea7d18af79d6d78d0ab5e8d058c4b7c93c
# Push it to GitHub
git push --set-upstream origin backport-1153-to-1.7.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.7.latest Then, create a pull request where the |
Hey Guys! |
resolves #1152
Problem
google-cloud-bigquery==3.20
addedpyarrow>=3.0
as a dependency for thepandas
extra and we are not declaring thepandas
extra. Either we are using functionality that requires thepandas
extra and were not aware or this is a required dependency and not an extra dependency.Solution
Install
google-cloud-bigquery[pandas]>=3.0,<4.0
Checklist