Trevor Manz
Trevor Manz
Hi there, this is a fundamental challenge with traditional Jupyter widgets (which anywidget is). In order to use a widget, the JS code must discoverable in the Jupyter environment which...
> Is there anything we can do within the JupyerChart js code? We already have a showError function (here) that returns the javascript error as a readable error, without a...
What about an option for generating/populating PEP 723 metadata automatically? Right now there is the option to add deps explicitly: ```sh uv add --script example.py --python 3.9 'requests==2.32.3' ``` but...
Apologies for the delay in my response. Thanks for the detailed issue. Gos should run inside VSCode, so this could be a bug (the file size also isn't too large)....
This is really perplexing and definitely a bug. I'm able to reproduce locally. Thanks for sharing the data! Hoping to push out a fix soon @sehilyi
Apologies if there isn't enough information here to reproduce, but I'm not sure what other information I could provide that would be relevant. ```sh ❯ npx envinfo --system --languages --managers...
now having an issue with upgrading: ```sh ❯ rye self update Updating to latest Checking checksum error: Unable to perform update. This can happen because files are in use. Please...
Ok, I think I sorted this out. I have `UV_PYTHON=python` as an environment variable.... but that `python` comes from Rye, so something happened when upgrading where `python` is momentarily not...
Hi there, the implementation looks fairly straight forward (https://github.com/zarr-developers/numcodecs/blob/main/numcodecs/fixedscaleoffset.py). Since it's not an especially complicated codec, I'd be happy to start with having an implementation _builtin_ to zarrita.js (just an...
```ts import * as zarr from "jsr:@zarrita/[email protected]"; import { assert } from "jsr:@std/[email protected]"; function parseSupportedDataType(dtype: string) { const match = dtype.match(/^([])(.*)$/); assert(match, `Invalid dtype: ${dtype}`); const [, endian, rest] =...