Bump caldav to 0.11.* (#9253)

Co-authored-by: AlexWaygood <alex.waygood@gmail.com>
This commit is contained in:
github-actions[bot]
2022-11-25 11:29:30 +00:00
committed by GitHub
parent 5453c97753
commit 0c03f099ab
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
version = "0.10.*"
version = "0.11.*"
# also types-lxml and types-icalendar when those stubs are added
requires = ["types-requests", "types-vobject"]

View File

@@ -115,6 +115,7 @@ class Calendar(DAVObject):
todo: bool | None = ...,
include_completed: bool = ...,
sort_keys: Sequence[str] = ...,
split_expanded: bool = ...,
**kwargs,
) -> list[CalendarObjectResource]: ...
@overload
@@ -125,6 +126,7 @@ class Calendar(DAVObject):
todo: bool | None = ...,
include_completed: bool = ...,
sort_keys: Sequence[str] = ...,
split_expanded: bool = ...,
**kwargs,
) -> list[_CC]: ...
@overload
@@ -135,6 +137,7 @@ class Calendar(DAVObject):
todo: bool | None = ...,
include_completed: bool = ...,
sort_keys: Sequence[str] = ...,
split_expanded: bool = ...,
**kwargs,
) -> list[_CC]: ...
def build_search_xml_query(
@@ -206,6 +209,8 @@ class CalendarObjectResource(DAVObject):
props: Any | None = ...,
) -> None: ...
def add_organizer(self) -> None: ...
def split_expanded(self: Self) -> list[Self]: ...
def expand_rrule(self, start: datetime.datetime, end: datetime.datetime) -> None: ...
def add_attendee(self, attendee, no_default_parameters: bool = ..., **parameters) -> None: ...
def is_invite_request(self) -> bool: ...
def accept_invite(self, calendar: Any | None = ...) -> None: ...