j-carson
j-carson
Are you sure you can't reproduce? I just created a new environment with miniconda and followed the instructions on the readme. Running "nox" I definitely see two warnings... ``` ===============================...
I tried to paste all my nox output in here, but it was too big. edit to add: it’s in the nox output of the current open PR
I am also having problems trying to get pyright to be able to find imports from my current virtual environment by setting venv and venvPath in a pyrightconfig.json file
You can also exclude everything on BaseModel with the `:inherited-members: BaseModel` directive
@mansenfranzen I suggested that workaround since my last PR had been hanging out for so long without response. Pydantic 2 has a documented naming convention that the items it adds...
Hmmm... I see lots of failed tests around ``` AttributeError: 'PosixPath' object has no attribute 'rmtree' ``` At first glance, I don't see how my change could have caused this...
> > but it is still failing on trying to install erdantic and not finding include files for that. > > Please suggest workaround? > > Erdantic requires (py)graphviz to...
Thanks for the test case, but I'm not sure why the expected test result shows "field_b" and "field_a" (and their validators) if autodoc's "inherited-members" option is not turned on? I'm...
Another edge case question: test_audotdoc_pydantic_model_show_validator_summary_inherited_without_inherited The classes are ```python class ModelShowValidatorsSummary(BaseModel): """ModelShowValidatorsSummary.""" field: int = 1 @field_validator("field") def check(cls, v) -> str: return v class ModelShowValidatorsSummaryInherited(ModelShowValidatorsSummary): """ModelShowValidatorsSummaryInherited.""" @field_validator("field") def check_inherited(cls,...