Skip to content
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

drop support for python 3.7 #793

Merged
merged 3 commits into from
May 30, 2023
Merged

drop support for python 3.7 #793

merged 3 commits into from
May 30, 2023

Conversation

McKnight-42
Copy link
Contributor

@McKnight-42 McKnight-42 commented May 30, 2023

resolves #792

Description

Checklist

@McKnight-42 McKnight-42 requested a review from a team as a code owner May 30, 2023 21:24
@McKnight-42 McKnight-42 self-assigned this May 30, 2023
@cla-bot cla-bot bot added the cla:yes label May 30, 2023
@github-actions
Copy link
Contributor

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.

setup.py Outdated
@@ -3,10 +3,10 @@
import sys
import re

# require python 3.7 or newer
# require python 3.8 or newer
if sys.version_info < (3, 7):
Copy link
Contributor

@nathaniel-may nathaniel-may May 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if sys.version_info < (3, 7):
if sys.version_info < (3, 8):

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dang didn't get swapped over pushed up

@nathaniel-may nathaniel-may merged commit 1ecd8e9 into main May 30, 2023
@nathaniel-may nathaniel-may deleted the mcknight/drop-37 branch May 30, 2023 21:47
@github-actions
Copy link
Contributor

The backport to 1.5.latest failed:

The process '/usr/bin/git' failed with exit code 1

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-793-to-1.5.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1ecd8e902d0451c3a0c0db8393eeeef13f933516
# Push it to GitHub
git push --set-upstream origin backport-793-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 base branch is 1.5.latest and the compare/head branch is backport-793-to-1.5.latest.

colin-rogers-dbt pushed a commit that referenced this pull request Jun 20, 2023
* drop support for python 3.7

* add changelog entry

* missed change

(cherry picked from commit 1ecd8e9)
@colin-rogers-dbt colin-rogers-dbt mentioned this pull request Jun 20, 2023
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[ADAP-591] Dropped support for Python 3.7
3 participants