Closed J-Wall closed 2 years ago
I just realised this was solved in #367. Are there plans to merge and release that soon? Thanks!
Yes I am planning to release later this month
fixed in v0.32.0
Do you know if v0.32.0 will be available on conda soon as well?
The
append
method on pandas DataFrames is deprecated (see pandas-dev/pandas#35407). Peppy uses this to build the sample table, leading to verboseFutureWarning
output from pandas. It's also probably not the most efficient way of making the table.Instead of appending to an existing DataFrame in
project._get_table_from_samples
, perhaps a python list should be used, and then converted to a DataFrame after the for loop?