mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
bbbc8987a8
* Support specialized ClassVars, e. g. ClassVar[int] now works in a model, fix #435 * Use apostrophes and pass the test also on python 3.6, where ClassVar[int] is a ClassVar, not a _GenericAlias. Note that the == operator gives False in this case, so we must really compare the classes directly. * Another attempt at the ClassVar check. * Ran make format. * Make mypy happy. * add HISTORY