Bump peewee to 3.17.8 (#13014)

This commit is contained in:
Danny Yang
2024-11-16 10:46:12 -05:00
committed by GitHub
parent e718a7363f
commit 2aa99e6854
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
version = "3.17.7"
version = "3.17.8"
upstream_repository = "https://github.com/coleifer/peewee"
# We're not providing stubs for all playhouse modules right now
# https://github.com/python/typeshed/pull/11731#issuecomment-2065729058

View File

@@ -1674,7 +1674,9 @@ class Model(metaclass=ModelBase):
def is_dirty(self) -> bool: ...
@property
def dirty_fields(self): ...
def dependencies(self, search_nullable: bool = ...) -> Generator[Incomplete, None, None]: ...
def dependencies(
self, search_nullable: bool = True, exclude_null_children: bool = False
) -> Generator[Incomplete, None, None]: ...
def delete_instance(self, recursive: bool = ..., delete_nullable: bool = ...): ...
def __hash__(self) -> int: ...
def __eq__(self, other) -> Expression | bool: ... # type: ignore[override]