Philip Meier
Philip Meier
> However I noticed one thing that the version that is being checked in `setup.py` looks locally something like `0.3.0.dev31+g7743725.d20240704` & say we've published `ragna-base==0.3.0` on pip. Would it still...
> Sorry to ask again, I just want to confirm that when releasing & publishing wheels, For example v0.3.0, ragna would have `ragna-base==0.3.0` as a dependency instead of something like...
> I don't know why I explicitly need to set `--sdist --wheel` for the meta-package build. If I don't, the build errors. This seems to be a bug in the...
@arjxn-py If you are still eager to help with this, could you check why we cannot build a wheel from the sdist on this branch, i.e. find out what is...
https://github.com/Quansight/ragna/issues/572#issuecomment-2788719676 surfaced another use case for this: async setup code. Right now all the setup code happens in `__init__`, which cannot by defined as `async`. Thus, we have to fall...
I'd love to have this feature. I often encounter this in CI where I have a base config, but have to adapt it for the specific workflow. If I just...
I think the only problem is, how we can detect when stop the current progress bar and start a new one. Progress bars are useful in scenarios where the downloaded...
Here is a slightly more complete variant that also allows you to serialize to a string again: ```python from typing import Annotated, Any import pydantic from pydantic_core import core_schema from...
@andrewfulton9 > Does your above implementation handle storage options as well? It does not, but it is a straightforward addition. Can I extract the storage options from `UPath(...).storage_options` and set...
Makes sense. In that case my suggestion above is likely off the table. `pydantic` requires a known schema for serialization. I thought that was just a `str` and maybe a...