Juniper Tyree

Results 292 comments of Juniper Tyree

@oscarbenjamin I managed to make the main tests and new tests pass, do you know what's wrong with the slow test failing?

Here's what I was able to code up so far: ```python import importlib.metadata from pathlib import Path packages = set( v for vs in importlib.metadata.packages_distributions().values() for v in vs )...

Thank you for these links! I further adapted my code a bit so that it works for the cpython modules and for namespace packages. Unfortunately, Pyodide needs better handling of...

Here's what I have now: ```py def get_imports_for_package(p: str) -> list[str]: def valid_package_name(n: str) -> bool: return all(invalid_chr not in n for invalid_chr in ".- ") imports = set() tree...

I tried the JupyerLite demo of this repo in Chrome and allowed access to a local folder. While I was able to see all files in the sidebar, opening them...

I tried it with a notebook from the local folder and that didn't work either, the current working dir was still the general JupyterLite drive. When I tried to open...

@epage can you please check if this would fix the issue for you? I'm at a conference right now so it will be a few days until I can push...

@epage Would this fix to ron::Number fix the feature unification and non-exhaustive matching for you?

( I'm still a bit cautious about additional drives ever since I had to disable the GitHub one because it disallowed creating new notebooks ... ) Anyways, I was thinking...

I think I would like to delay this change for another release, since it's looking like we'll need a quick v0.10 release for #564 and the deprecation will need time...