-
Notifications
You must be signed in to change notification settings - Fork 228
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
Update the spark version to the current version #1055
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the dbt-spark contributing guide. |
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.
Really appreciate the comments.
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.8.latest 1.8.latest
# Navigate to the new working tree
cd .worktrees/backport-1.8.latest
# Create a new branch
git switch --create backport-1055-to-1.8.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 824ca0f2249d145234f21d7e4066e033a273e2e2
# Push it to GitHub
git push --set-upstream origin backport-1055-to-1.8.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.8.latest Then, create a pull request where the |
* update the spark version to the current version * update pin for pydantic to resolve explosion/spaCy#12659 * exclude koalas dataframes from test (cherry picked from commit 824ca0f)
…#1055) (#1130) * Update the spark version to the current version (#1055) * update the spark version to the current version * update pin for pydantic to resolve explosion/spaCy#12659 * exclude koalas dataframes from test (cherry picked from commit 824ca0f) * Backport preleases. * Fix numpy issue. --------- Co-authored-by: VersusFacit <[email protected]>
resolves #1054
Problem
spacy
that requirespydanic>=1.10.8
(see FIXED: Pydantic issubclass error for python 3.8 and 3.9 explosion/spaCy#12659)databricks.koalas
that requires an update in handlingnumpy
updates; however, this library is no longer supportedSolution
pydanic<1.10.3
topydanic>=1.10.8
Checklist