-
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
DeprecationWarning: #34
Comments
Would it be wise to move from Pandas to Polars? See [https://pola.rs/posts/polars-string-type/] |
I think pandas is better documented |
I have created a branch of HeatCluster - v1.1.0.20240131 using Polars. How can I test that within github without modifying main? |
If all your changed are on a branch, then you can push to your github repo and then create a PR. That should trigger your tests. |
Doesn’t the PR pull from the new branch to main? Also, when I try running the tests, I am getting errors. When I correct the files (heatcluster.yml, and heatcluster.py) and commit changes, the test is still using the old version of the files and gives me the same error. For instance, I changed (tabs = pl.scan_csv(file, nrows=1, sep='\t').shape[1]) to (tabs = pl.scan_csv(file, n_rows=1, sep='\t').shape[1]) in heatcluster.py and committed the change. But when I run the test, it gives me the same error, that nrows is incorrect! |
I don't think this is an error, but I wanted to let you know that there's a DepreciationWarning with heatcluster due to pandas' new dependency.
The text was updated successfully, but these errors were encountered: