dmontagu / fastapi-utils

Reusable utilities for FastAPI
MIT License
1.84k stars 163 forks source link

Support Pydantic 2 - is_classvar #284

Open ashupednekar opened 5 months ago

ashupednekar commented 5 months ago

Fixes #283

Only addressing the missing is_classvar in pydantic 2. Added a few methods in cbv.py.

Implemented is_classvar and _check_classvar using typing. Note: it's the exact code from pydantic v1 typing.py, so shouldn't break anything

Leaving the rest of the pydantic 2 support to #270 #279