Andrei
Andrei
Fixes #297 Changes proposed in this pull request: - Pydantic V2 is supported - existing async tests supports python > 3.8 now Attention: @prkumar If this will be merged, #298...
Fixes #297. Changes proposed in this pull request: - Require pydantic
**Describe the bug** Probably, current version of uplink is not supporting pydantic v2 **To Reproduce** ``` from uplink import Body, Consumer, post from pydantic import BaseModel, AnyHttpUrl # v2.0.3 class...
Hi man, what about documentation of project? Or maybe you need help with code, so i am ready.
Repro: ``` from drf_pydantic import BaseModel from pydantic import model_validator class A(BaseModel): @model_validator(mode='after') def qwe(self): assert False A.drf_serializer(data={}).is_valid(raise_exception=True) # Nothing happens :( ```