diff --git a/doc/make_doc.py b/doc/make_doc.py index b004747..da38955 100755 --- a/doc/make_doc.py +++ b/doc/make_doc.py @@ -47,7 +47,8 @@ def add_report(df, name): print(f"making report for {name}", end="", flush=True) - df = pl.from_pandas(df) + # TODO: from_pandas failing due to bug in polars; restore when it is fixed. + # df = pl.from_pandas(df) pretty_name = name.replace("_", " ").capitalize() start = time.time() html = Report(df, title=pretty_name).html