pydiverse / pydiverse.pipedag

A data pipeline orchestration library for rapid iterative development with automatic cache invalidation allowing users to focus writing their tasks in pandas, polars, sqlalchemy, ibis, and alike.
https://pydiversepipedag.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
15 stars 2 forks source link

Fix polars >= 1 #212

Closed nicolasmueller closed 1 month ago

nicolasmueller commented 1 month ago

Currently retrieving a polars dataframe with polars 1.2 crashes. This is because we currently use read_database instead of read_database_uri, but hand it a URI. My guess is that polars 1 got stricter with it's behavior.

Checklist