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
In pandas 1.5, the parameter line_terminator of the to_csv function was renamed to lineterminator (see here). This seems to break bcpy as the following error message shows:
File "...\bcpy\data_objects.py", line 315, in to_sql
self._df.to_csv(
TypeError: NDFrame.to_csv() got an unexpected keyword argument 'line_terminator'
Using pandas 1.4.4 (or 1.5.3 if you don't mind the FutureWarning) is a workaround, but it would be great if current versions (2.0+) of pandas could be supported too.
The text was updated successfully, but these errors were encountered:
In pandas 1.5, the parameter
line_terminator
of theto_csv
function was renamed tolineterminator
(see here). This seems to break bcpy as the following error message shows:Using pandas 1.4.4 (or 1.5.3 if you don't mind the
FutureWarning
) is a workaround, but it would be great if current versions (2.0+) of pandas could be supported too.The text was updated successfully, but these errors were encountered: