You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Synchronise version in pyproject.yml
pyproject.toml is not the source of truth for the current version in our pypi publish workflow. Rather, it uses the latest git tag. That's why the version being out of sync hasn't caused issues until now.
Remove sqlparse.compat import (#38)
sqlparse do no longer have sqlparse.compat. It was removed in version 0.4.
It is missing from GitHub source and sqlparse-0.4.2.tar.gz from PyPI. But
it exist in sqlparse-0.4.2-py3-none-any.whl from PyPi for some strang reasone.
Since databricks-sql-cli import 'text_type' form sqlparse.compat it will fail if you install
sqlparse in any other way other than wheel.
sqlparse was remooved in the following commit:
andialbrecht/sqlparse@3e3892f
'text_type' was replaced with 'str' so we do the same in databricks-sql-cli.