Serge Matveenko
Serge Matveenko
Confirming the same on Fedora 35 with 0.28 using AppImage
pip compile crashes on this ```toml [project.dependencies] pydantic = { git = 'https://github.com/pydantic/pydantic.git' } ``` ```shell ❯ pip-compile -q --resolver backtracking --extra all -o requirements/pyproject.tx t pyproject.toml Backend subprocess exited...
Here you go https://github.com/pydantic/pydantic-extra-types/blob/lig/depend-on-pydantic-git/pyproject.toml
@rafalkrupinski According to [Pydantic v2 docs on private model attributes](https://docs.pydantic.dev/latest/usage/models/#private-model-attributes): "Private attribute names must start with underscore to prevent conflicts with model fields. However, dunder names (such as __attr__) are...
@felix-hilden here is a possible take on the example from tests ```python if prevp.parent and prevp.parent.type in { syms.typedargslist, syms.varargslist, syms.parameters, syms.arglist, syms.argument, }: # start from scratch if prevp.parent...
> > I would suggest (re)considering the use of a configuration option to balance the interests here. > > We avoid that here. Maybe these couple of cases are those...
@crazyscientist BTW, I'd still recommend using a constraint `pydantic
It looks like this doesn't reproduce in Pydantic v2.3.0. ```py from datetime import datetime from pydantic import BaseModel, Field, RootModel from fastapi.encoders import jsonable_encoder class A(BaseModel): class Config: json_encoders =...
@fgmacedo do it :)
@Almorisson if `numpy` is a dependency it should be defined as such in `lap05`, isn't it? #41 solved the installation problem for me without the need to add `numpy` explicitly....