Paddy Mullen

Results 99 comments of Paddy Mullen

I got this far. https://github.com/paddymul/ipyreact-starter I have a react component library built with vite (that toolchain seemed to be most popular). It can be bundled with esbuild. I'm not sure...

Update. I now got it to work with the rollup example from #59 . https://github.com/paddymul/ipyreact-starter/blob/main/packages/inline-notebook/all-in-one.ipynb Yay progress. I was defining, exporting and importing my component library improperly.

Here's a better version that passes mypy ```python from abc import ABC, abstractmethod from typing_extensions import override import pandas as pd import polars as pl from typing import Generic, Type,...

Thanks for the Bug Report! Sorry I missed this initially. currently digging into a fix. This is a JSON serialization issue `buckaroo.BuckarooWidget(df)` gives the following stack trace ``` --------------------------------------------------------------------------- AttributeError...

So this is a core bug in pandas it comes up when calling `df.to_json(oreint=table)` I could special case datetime index handling, and will probably have to eventually because there's a...

relevant pandas bug https://github.com/pandas-dev/pandas/issues/39537

fixed by Chore/fix numeric column names #325 Now timeseries columns and indexes without a timezone are coerced to UTC. A warning is printed.

This is a bug, but it is a fairly odd edge case for now.

fixed by #399 release 0.11.0 This and many related named index cases are shown in the ddd_library

As someone who watches this project but isn't a contributor, I just wanted to commend @JovanVeljanoski for the excellent feedback here. I'm sure the project maintainers appreciate this type of...