-
Notifications
You must be signed in to change notification settings - Fork 124
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
Set upper bound for Python #152
Conversation
], | ||
python_requires=">=3.7", | ||
python_requires=">=3.7,<3.10", |
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 might be good enough without explicitly setting the upper bound. We could just say dbt-databricks
does not officially support Python 3.10 yet.
@allisonwang-db WDYT?
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.
Yea this should be fine.
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.
Good catch! Thanks for the fix.
], | ||
python_requires=">=3.7", | ||
python_requires=">=3.7,<3.10", |
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.
Yea this should be fine.
Thanks! merging. |
### Description The dependent library `databricks-sql-connector` doesn't support Python 3.10 yet (databricks/databricks-sql-python#26). We should also avoid incompatible Python version.
Description
The dependent library
databricks-sql-connector
doesn't support Python 3.10 yet (databricks/databricks-sql-python#26).We should also avoid incompatible Python version.