Closed r4victor closed 8 months ago
cached_classproperty claims to support Python >= 3.8 but works only on Python >= 3.10 because of the typing union operator used ("|"). The operator should be replaced with Union/Optional to support versions before 3.10.
cached_classproperty
Union
Optional
Related to https://github.com/zmievsa/pydantic-duality/issues/8.
Thanks! Will take care of it.
Released as a part of 1.0.1. Big thanks!
cached_classproperty
claims to support Python >= 3.8 but works only on Python >= 3.10 because of the typing union operator used ("|"). The operator should be replaced withUnion
/Optional
to support versions before 3.10.Related to https://github.com/zmievsa/pydantic-duality/issues/8.