mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-17 07:10:37 +00:00
chore(internal): bump pydantic dependency (#2251)
This commit is contained in:
parent
4a09abe44a
commit
05ff64a485
3 changed files with 6 additions and 8 deletions
|
|
@ -62,9 +62,9 @@ platformdirs==3.11.0
|
|||
# via virtualenv
|
||||
pluggy==1.5.0
|
||||
# via pytest
|
||||
pydantic==2.9.2
|
||||
pydantic==2.10.3
|
||||
# via cloudflare
|
||||
pydantic-core==2.23.4
|
||||
pydantic-core==2.27.1
|
||||
# via pydantic
|
||||
pygments==2.18.0
|
||||
# via rich
|
||||
|
|
|
|||
|
|
@ -30,9 +30,9 @@ httpx==0.25.2
|
|||
idna==3.4
|
||||
# via anyio
|
||||
# via httpx
|
||||
pydantic==2.9.2
|
||||
pydantic==2.10.3
|
||||
# via cloudflare
|
||||
pydantic-core==2.23.4
|
||||
pydantic-core==2.27.1
|
||||
# via pydantic
|
||||
sniffio==1.3.0
|
||||
# via anyio
|
||||
|
|
|
|||
|
|
@ -192,10 +192,8 @@ ResponseT = TypeVar(
|
|||
StrBytesIntFloat = Union[str, bytes, int, float]
|
||||
|
||||
# Note: copied from Pydantic
|
||||
# https://github.com/pydantic/pydantic/blob/32ea570bf96e84234d2992e1ddf40ab8a565925a/pydantic/main.py#L49
|
||||
IncEx: TypeAlias = Union[
|
||||
Set[int], Set[str], Mapping[int, Union["IncEx", Literal[True]]], Mapping[str, Union["IncEx", Literal[True]]]
|
||||
]
|
||||
# https://github.com/pydantic/pydantic/blob/6f31f8f68ef011f84357330186f603ff295312fd/pydantic/main.py#L79
|
||||
IncEx: TypeAlias = Union[Set[int], Set[str], Mapping[int, Union["IncEx", bool]], Mapping[str, Union["IncEx", bool]]]
|
||||
|
||||
PostParser = Callable[[Any], Any]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue