Samuel Colvin

Results 1016 comments of Samuel Colvin

Hi @defunkt it looks like pystache needs some love. There are a few old pull requests here and there are some other changes I'd like to propose but there's no...

Pretty sure this package is dead. Try https://github.com/noahmorrison/chevron instead.

PR welcome to add it. By the way, `setuptools-rust` isn't used, and `maturin` will be installed as a build requirement. The only external dependency is the rust toolchain.

bug deep in `schema.py` I doubt there's an easy fix I'm afraid.

Sorry for slow reply, yes makes sense. I don't want to change the limits, but we should fail in a more transparent way.

Thanks for your detailed explanation @MarkusSintonen, we'll review your PR.

I think the principle here could still be very useful, but this will need to be rebased on `main` for V2. It might be easier to restart it given how...

The plan is to take this logic and move it onto the new code in `main`.

assigned both @hramezani and @adriangb, whoever gets here first, please work on it.

So usage would be ```py from pydantic import validate, BaseModel @validate(...config) def my_method(...): ... @validate(...config) @dataclass class MyDataclass: ... @validate(...config) class MyTypeDict(TypedDict): ... ValidatedTuple = validate(tuple[int, int, int]) ValidatedIntStr =...