Casper da Costa-Luis

Results 737 comments of Casper da Costa-Luis

Thanks for this! There are a few failing tests though... ```python _______________________ test_main_self_completion[fish] ________________________ tests/test_shtab.py:79: in test_main_self_completion assert expected[shell] in captured.out E KeyError: 'fish' ___________________________ test_prog_scripts[fish] ____________________________ tests/test_shtab.py:115: in test_prog_scripts...

`set_storage_scheme("memory")` works for the first fwd projection, but the second one in the notebook triggers out of memory (on the 8GB RAM machine)... Should we add `set_storage_scheme("memory")` to `BrainWeb.ipynb` and...

Aliases are quite easy to implement... `pip install markitdown[all]` could be made identical to `pip install markitdown[ocr,llm,yt]`. Pretty common Pythonicity. btw you should probably rename this issue "optional dependencies" or...

Whoa at most you could do: ```py try: import openai except ImportError as exc: raise ImportError("please `pip/conda install openai` or `pip install markitdown[llm]`") from exc ``` Meanwhile side-effects like this...

Sorry just to clarify, is this the intention? meta.yml modification | target platform | target python -|-|- (none) | `linux-64` etc | `3.9` etc `noarch: python` | `noarch` | `*`...

I still don't get it... with `python_version_independent: true`: ```sh $ conda build --output-folder dist ... $ tar tf dist/*/mypackagename-*.tar.bz2 ... lib/python3.12/site-packages/mypackagename/... $ mamba create -n testing -c ./dist python=3.13 mypackagename...

A bit hesitant as it's not possible to infer which (`FILE` or `DIR`) the user expects `type=Path` to mean.

If we want to piggy-back off of types it might be better to have: ```py p.add_argument("-o", "--output-dir", type=typing.Annotated[str, shtab.DIR], help="Output directory") ```