chore(deps): update pydantic to v2 (#11701)

This commit is contained in:
Robert Schütz 2024-08-11 09:23:11 -07:00 committed by GitHub
parent 7d320217b9
commit 9ed04588b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 144 additions and 56 deletions

View file

@ -3,7 +3,7 @@ from typing import Any, Literal, Protocol, TypedDict, TypeGuard, TypeVar
import numpy as np
import numpy.typing as npt
from pydantic import BaseModel
from pydantic.v1 import BaseModel
class StrEnum(str, Enum):