-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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 python_requires to setup.py #2361
Conversation
This looks good! Can you also add this to the other 5 setup.py files? Not everyone installs via
|
Thanks for the quick reply @beckjake, I've updated the others as well |
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.
This looks good to me, I'll kick off the full tests shortly.
In the future we might want to set an upper bound here too - I bet 3.9 doesn't work, as we have some dependencies that trigger deprecation warnings on 3.8.
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.
Sorry, one more thing! Can you please add yourself to the contributors
link in the changelog? I don't think this needs an actual entry in the changelog but we do want to make sure we give you credit in the release notes!
This will let people know that they are running a too old version of Python Signed-off-by: Fokko Driesprong <fokko@apache.org>
@beckjake Of course! I've added myself to the list, thanks! |
Thanks for your contribution @Fokko! This will be in 0.17.0. |
This will let people know that they are running a too old version of Python. It requires 3.6.2+ because of the usage of the NoReturn hint: https://docs.python.org/3/library/typing.html#typing.NoReturn
resolves #2360
Description
Checklist
CHANGELOG.md
and added information about my change to the "dbt next" section.