Anatoly Myachev
Anatoly Myachev
> Think more what we run regarding ASV - whether we really care about that in PRs, or maybe we can drop this from PRs and instead run this on...
I don't know what else I can do here
~Blocked by https://github.com/modin-project/modin/pull/6706~
> The CI shows a legitimate test failure in `modin/experimental/pandas/test/test_io_exp.py::TestCsvGlob::test_read_single_csv_with_parse_dates[dict]`. I need to add handling of `parse_dates` `dict` in `read_csv_glob`. @mvashishtha could you rebase and see if this error remains
> @mvashishtha let's skip dict case for read_csv_glob and create separate separate issue for that
@mvashishtha https://github.com/modin-project/modin/issues/5326
@mvashishtha the problem reproducer will throw `pandas.errors.DataError: Cannot aggregate non-numeric type: object` for both Modin and pandas. ```python import modin.pandas as pd df = pd.DataFrame({"a": [1], "b": ["x"]}) df.rolling(window=1).min() ```...
Fixed in https://github.com/modin-project/modin/pull/6448.