-
At my company I was asked to migrate from the VDI I was using to a new Cloud PC. As part of this migration I decided to update to Python 3.13. I've got a script that reads a duckdb file and loads a table from it. However, that script if failing due to a
Example code: import ibis
sess_env = "dev"
db_name= "test_duckdb"
table_name= "some_table"
duckdb_file = f"C:/data/extracts/{db_name}.duckdb"
print(f"Querying {db_name}.{table_name} from {sess_env} environment")
df = ibis.duckdb.connect(
duckdb_file,
read_only=True,
).table(query_base_name)
print(df.limit(10).execute()) Here's the traceback:
Any ideas on how to fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
FYI: I had to downgrade pyarrow from 21 to 20 to get this to work. |
Beta Was this translation helpful? Give feedback.
FYI: I had to downgrade pyarrow from 21 to 20 to get this to work.