Dmitry Pershin

Results 16 comments of Dmitry Pershin

I think you branched off from master. Please rebase to dev because you PR brings commits from master branch.

> (This is @ajoino, accidentally commented using my work account again...) > ... > Something poetry-related given the logs but I don't use poetry for my own projects so it's...

@saharwenrix Hi, MRs to version 1 are no longer accepted, only critical bug fixes. In version 2 ``xs:list`` can be handled using custom xml serializers: https://pydantic-xml.readthedocs.io/en/latest/pages/misc.html#custom-xml-serialization

@RiccardoNizzolo Hi, That is breaking change in `pydantic` itself, not `pydantic-xml`. Starting from pydantic 2.0 it is not possible to get the field type from `__fields__` map anymore. If you...

@ajoino Hi, Due to xml complexity the model xml serializer/deserializer is built during model definition, not model instantiation that is why you get the error: `model GenericModel is partially initialized`....

@ajoino Hi, I am not sure defining `any_` phantom field is a very intuitive approach. Furthermore user can define `any_` field in a model by himself which could lead to...