-
Notifications
You must be signed in to change notification settings - Fork 0
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
Warnings #130
Comments
I have not been able to track this down - but it's a 3.12-specific problem so I'm assuming one of my dependencies will fix it in a later release.
I don't think the fork warnings have to do with
This is fixed! -> multidms/multidms/model_collection.py Line 717 in 7f8d675
The code causing the problem: sparsity_df = (
df.drop(columns=to_throw)
.assign(mut_type=lambda x: x.mutation.apply(mut_type))
.reset_index()
.groupby(by=feature_cols)
.apply(
sparsity, include_groups=True
) # TODO This throws deprecation warning
.drop(columns=feature_cols + ["mutation"])
.reset_index(drop=False)
.melt(id_vars=feature_cols, var_name="mut_param", value_name="sparsity")
) could be fixed simply by
but not that this makes the package incompatible with 3.8 (which is okay) Update: fixed! |
Closing as the last outstanding problem with "deadlock" warning has been individually documented in #147 |
Note to look more closely into the unit test warnings
The text was updated successfully, but these errors were encountered: