-
Notifications
You must be signed in to change notification settings - Fork 1k
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
chore: Upgrade dask dependency #4050
Conversation
Signed-off-by: tokoko <[email protected]>
Signed-off-by: tokoko <[email protected]>
Signed-off-by: tokoko <[email protected]>
Signed-off-by: tokoko <[email protected]>
@@ -423,7 +423,7 @@ def _upload_entity_df_into_sqlserver_and_get_entity_schema( | |||
|
|||
elif isinstance(entity_df, pandas.DataFrame): | |||
# Drop the index so that we don't have unnecessary columns | |||
engine.execute(_df_to_create_table_sql(entity_df, table_id)) | |||
engine.execute(_df_to_create_table_sql(entity_df, table_id)) # type: ignore |
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.
Why suddenly adding the type ignore?
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.
not exactly sure tbh, but probably something related to this #4066. We broke mssql with sqlalchemy upgrade, it passed the ci, because we are not testing contribs in the ci. in other words, it's already broken with or without the type check.
* add dataframe extra to dask Signed-off-by: tokoko <[email protected]> * update pinned versions Signed-off-by: tokoko <[email protected]> * add ignore rules to mssql, it's too broken Signed-off-by: tokoko <[email protected]> * ruff reformat Signed-off-by: tokoko <[email protected]> --------- Signed-off-by: tokoko <[email protected]>
* add dataframe extra to dask Signed-off-by: tokoko <[email protected]> * update pinned versions Signed-off-by: tokoko <[email protected]> * add ignore rules to mssql, it's too broken Signed-off-by: tokoko <[email protected]> * ruff reformat Signed-off-by: tokoko <[email protected]> --------- Signed-off-by: tokoko <[email protected]>
What this PR does / why we need it:
This PR updates
dask
dependency and addsdataframe
extra to dask. dask warnings should go away at last.