v0.3.0
v0.3.0 (2025-02-24)
Added 1
- Handle bare ClassVar type qualifiers
Changed 1
- Rename INFERRED sentinel to UNKNOWN
From typing-inspection
What's Changed
- Handle bare
ClassVartype qualifiers, renameINFERREDsentinel by @Viicos in #26 While currently not explicitly allowed by the typing specification,ClassVaris allowed as a bare type qualifier. UnlikeFinal, the actual type doesn't have to be inferred from the assignment (e.g. one can useAny). For this reason, theINFERREDsentinel was renamed toUNKNOWN.
Full Changelog: https://github.com/pydantic/typing-inspection/compare/v0.2.0...v0.3.0