Skip to content
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

Preserve Complex Data Types for to_csv #61157

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Next Next commit
dummy test_csv added
  • Loading branch information
Jaspvr committed Mar 13, 2025
commit 4489a35fa2006f3feafb290c7da80d72f93d016a
6 changes: 6 additions & 0 deletions scripts/tests/test_csv.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import pandas as pd

print("Pandas version:", pd.__version__)

df = pd.DataFrame({"Name": ["Alice", "Bob"], "Age": [25, 30]})
print(df)