Jonas Haag

Results 799 comments of Jonas Haag

> I just realized that Micromamba does not include one of the directories that Mamba does: I still can't figure this out after going through the list of paths above.

Probably nothing on the technical side, just a few convenience methods.

You're right that it's already quite simple... my suggestion of `from_pil` is the same as `new_from_array` (it's just a bit confusingly named for that purpose), and my convenience method for...

I have read the CLA Document and I hereby sign the CLA

bump, ref #4156

It also does not support Pydantic/type checked return values right?

Workaround: ```py @pytest.fixture(scope="function", autouse=True) def fix_pytest_clarity_width(request, monkeypatch): # https://github.com/darrenburns/pytest-clarity/pull/29 width = int(request.config.getoption("--diff-width")) monkeypatch.setattr(pytest_clarity.plugin, "Console", lambda **kwargs: Console(**kwargs, width=width)) ```

Actually I'm not sure if you can get much faster because the file system will be the limit. Maybe 2x. You might want to benchmark this outside of Mamba.

Here's some benchmarking that I've done. It expects you to have the ncurses package unpacked at `ncurses*`. ```py import time from pathlib import Path import tempfile from concurrent.futures import ThreadPoolExecutor,...