You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pandas 1.5 deprecated line_terminator in favour of lineterminator (to
align with read_csv), and removed it in 2.0. Align the cuDF API by
preferring lineterminator and providing a deprecation warning for use
of line_terminator. Closesrapidsai#12894.
Describe the bug
writing code with
import cudf as pd
Steps/Code to reproduce bug
pandas to_csv uses
lineterminator
cudf to_csv uses
line_terminator
Expected behavior
cudf to_csv
to acceptlineterminator
https://github.com/rapidsai/cudf/blob/branch-23.02/python/cudf/cudf/io/csv.py#L158
The text was updated successfully, but these errors were encountered: