Christian Hattemer
Christian Hattemer
Hey @Krakonos, it seems you found some time for Merkaartor recently. Please, there are two simple open PR by me.
I'm not opposed to CMake, if you want to transition then that's fine. It seems to make integration with CLion much easier. However in the current state only the Makefile...
Trying CMake was actually the first thing I did since CLion autodetects it. The build failed very early with some error I can't remember. I can't recheck at the moment...
I wanted the partial model to just add a default value to all fields but keep whether the field is required or not from the full model. This way all...
Hey @svlandeg, I've rebased the PR and all checks are green now. I'd be ready for review.
@Seluj78, I'm not sure, where would you use `typing.Literal`? My database is Postgres (I edited the description to mention this clearly) and it's possible to have different schemas there. This...
@YuriiMotov, thank you for the suggestion. That looks like a good alternative I didn't find. I'll try it. I don't have enough information to comment on your question regarding the...
I wanted to share this example which can also be used as a test. With Pydantic 2.12 it prints an empty set while it should print: `{ForeignKey('vehicle.id')}` ```python from pydantic...
> Any idea why? You didn't use Annotated types (unless you rebound the built in types), so this is a different issue. It may be related to your usage of...