-
Notifications
You must be signed in to change notification settings - Fork 16
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
Updates SQLMesh to the latest version #2679
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -59,7 +59,7 @@ sqlalchemy = "^2.0.25" | |||
textual = "^0.52.1" | |||
redis = "^5.0.7" | |||
githubkit = "^0.11.6" | |||
sqlmesh = { extras = ["trino"], version = "^0.129.0" } | |||
sqlmesh = "^0.141.1" |
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.
Will need to add the trino extras here
@@ -21,6 +21,9 @@ | |||
connection=DuckDBConnectionConfig( | |||
database=os.environ.get("SQLMESH_DUCKDB_LOCAL_PATH") | |||
), | |||
test_connection=DuckDBConnectionConfig( |
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.
Remove this local testing thing!
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.
Auto-approved! please merge responsibly 😄
Test deployment unnecessary, no dbt files have been changed. |
Need to run some manual tests to ensure that this still functions properly. I also tried to simplify a few things. This is so we can get all of the dagster_sqlmesh things upgraded as well.
This also significantly simplifies the model factory generation. Uses something the sqlmesh folks eluded to in our convo with reorganizing how we did imports to get that to work properly (that's because it wasn't working with the latest updates). This should make this all much less brittle.